We've expanded our news coverage and improved our search! Visit
oreilly.com for the latest or search for all things across O'Reilly!
Article:
 |
|
Configuring JBoss 4.0 JDBC Connectivity
|
| Subject: |
|
Oracle Configuration |
| Date: |
|
2005-02-16 06:26:27 |
| From: |
|
dvohra09
|
|
|
|
In the Oracle Configuration section :
The <driver-class/> and <connection-url/> settings for Oracle are as follows:
Oracle OCI Type 2 Driver
Class: oracle.jdbc.driver.OracleDriver
URL: jdbc:oracle:oci:@<database>
Oracle Thin Type 4 Driver
Class: oracle.jdbc.driver.OracleDriver
URL: jdbc:oracle:thin:@<host>:<port>:<database>
Oracle OCI XA Type 2 Driver
Class: oracle.jdbc.xa.client.OracleXADataSource
URL:jdbc:oracle:oci:@<database>
Oracle Thin XA Type 4 Driver
Class: oracle.jdbc.xa.client.OracleXADataSource
URL: jdbc:oracle:thin:@<host>:<port>:<database>
|