The JDBC driver your application uses to connect to the database.
When to specify Driver You must specify the Driver database parameter before connecting to the database.
JDB JDBC
Driver='driver_name'
None
The driver name identifies the Java class name for the particular driver you are using to connect to the database.
To set the driver name of a Sybase jConnect driver:
Database profile Type the following in the Driver Name box on the Connection page in the Database Profile Setup dialog box:
com.sybase.jdbc.SybDriver
Application Type the following in code:
SQLCA.DBParm="Driver='com.sybase.jdbc.SybDriver'"
To set the driver name of an Oracle JDBC Driver:
Database profile Type the following in the Driver Name box on the Connection page in the Database Profile Setup dialog box.
oracle.jdbc.driver.OracleDriver
Application Type the following in code:
SQLCA.DBParm="Driver='oracle.jdbc.driver.OracleDriver'"