Java Runtime Environment 1.3

For JRE version 1.3, JDBC data sources are defined as global JNDI resources on the Java web application server.

To define JDBC data sources as JNDI resources, add environment entries to your web application's deployment descriptor file (located in /WEB-INF/web.xml file).

<env-entry>

    <env-entry-name>jdbc/{DataSourceName}</env-entry-name>

    <env-entry-type>java.lang.String</env-entry-type>

    <env-entry-value>

    !{DriverName}!{ConnectionURL}

    </env-entry-value>

</env-entry>

{DataSourceName} defines the data source name that is used by a report.

{DriverName} defines the fully qualified class name of the JDBC driver.

{ConnectionURL} defines the connection URL that is used by the driver to connect to the database. The syntax and parameters of the connection URL are database-specific.

The first character between the opening and closing <env-entry-value> tags is the delimiter that separates the entry values. In this example, the exclamation mark ("!") is the delimiting character that separates the driver classname from the connection URL.



Business Objects
http://www.businessobjects.com/
Support services
http://www.businessobjects.com/services/support/