How should I set the “JDBC driver” and “URL of database” fields for starting JChemManager?

Fields jchemmanager
0
Posted

How should I set the “JDBC driver” and “URL of database” fields for starting JChemManager?

0

Here are some URL settings for JDBC connections to different database engines. (For more complex cases please see the documentation of the JDBC driver.) Note: we recommend ODBC only for Microsoft Access. For other databases the native JDBC drivers should be used. Database JDBC driver URL format Example Oracle (thin driver) oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@[host address]:[port]:[database sid] jdbc:oracle:thin:@localhost:1521:mydb Oracle (OCI8 driver) oracle.jdbc.driver.OracleDriver jdbc:oracle:oci8:@[host]:[port]:[database sid] jdbc:oracle:oci8:@localhost:1521:mydb MySQL com.mysql.jdbc.Driver jdbc:mysql://[host]/[database] jdbc:mysql://localhost/mydb MS Access via ODBC sun.jdbc.odbc.JdbcOdbcDriver jdbc:odbc:[odbc data source] jdbc:odbc:mydatasource PostgreSQL org.postgresql.Driver jdbc:postgresql://[host]:[port]/[database] jdbc:postgresql://localhost:5432/mydb DB2 COM.ibm.db2.jdbc.net.DB2Driver jdbc:db2://[host]/[database] jdbc:db2://localhost/mydb InterBase interbase.i

Related Questions