Provides an interface to a databases using JDBC drivers. You can get JDBC drivers from the software providers.
Place the JAR or ZIP file containing the JDBC drivers in the
drivers
folder under the package
installation directory. All files placed in this directory are added automatically to the Java
CLASSPATH
when
the package is loaded. Alternatively, drivers can be loaded explicitly at runtime using
.
The interface has been tested with the following drivers:
jdbc:sqlserver://<host>:1433;databaseName=<database>;user=<username>;password=<password>;"
com.microsoft.sqlserver.jdbc.SQLServerDriver
jdbc:db2://<host>:6789/<database>
COM.ibm.db2.jdbc.net.DB2Driver
jdbc:mysql://<host>:3306/<database>
com.mysql.jdbc.Driver
jdbc:oracle:thin:@<host>:1521:<databaseSID>
oracle.jdbc.OracleDriver
jdbc:postgresql://<host>:5432/<database>
org.postgresql.Driver