Versions Compared

Key

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

...

We suggest the use of externally defined connections using theĀ <BeanManagedConnection> element to fully tailor a suitable connection pool.

Reference

true

Localtabgroup

Localtab

active
-live
titleXML Attributes

NameTypeRequired?Description

jdbcDriver

stringYJava class name of the JDBC driver used to connect to the database

jdbcURL

stringY

JDBC URL to connect to. These are usually of the form jdbc:databaseProduceName:databaseSpecificInformation

jdbcUserName

string
The username to use to communicate with the database

jdbcPassword

string
The password to use to communicate with the database


Examples

Code Block
languagexml
<SimpleManagedConnection
        jdbcDriver="org.hsqldb.jdbc.JDBCDriver" jdbcURL="jdbc:hsqldb:mem:RDBMSDataConnectorStore"
        jdbcUserName="jdbcUser" jdbcPassword="Whatever" />

...