Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Minor corrections by Pawel H Debski and Les Austin
Table of Contents

Related Documents

Entity Engine Guide

...

Sub-Element NameHow ManyDescription
sql-load-path0 to manyUsed to specify a list of full paths to directories that will be searched for XML and SQL files to import into the data source by the install page in the WebTools webapp. Each tag has two attributes: path for the path location, and prepend-env to optionally specify a Java environment property to prepend to the specified path.
inline-jdbc0 or 1Used to specify the JDBC parameters to be used either by the connection pool or if no connection pool is available then by directly loading the driver (very slow). You must specify either inline-jdbc or jndi-jdbc, but not both, for the datasource.
jndi-jdbc0 or 1Used to specify the jndi-server and jndi-name to get a Connection or XAConnection from JNDI. You must specify either inline-jdbc or jndi-jdbc, but not both, for the datasource.
ANY0 or 1Any tag may go inside the datasource tag to specify parameters for other GenericHelper implementations. These will not be checked at load time unless the DTD is modified to describe them.

 

The inline-jdbc tag has the following attributes:

Attribute NameRequired?Description
jdbc-driverYThe JDBC driver class for the database.
jdbc-uriYThe URI used to specify the type and location of the database.
jdbc-usernameYThe username to connect to the database as.
jdbc-passwordYThe username's password.
isolation-levelNThis is used by Tyrex to specify the transaction isolation level. The standard JDBC transaction isolation levels are available:
  • "None"
  • "ReadCommitted"
  • "ReadUncommitted"
  • "RepeatableRead"
  • "Serializable"

 

The jndi-jdbc tag has the following attributes:

...