Connection Configuration Help

After modification, go to the login panel (or logout) and click browser's Refresh/Reload button,
the modification will be in effect immediately.
No server restarting necessary.
Connection Name Description of the connection, appears on the connection list on the login panel.
Short_Name A short description of the connection, less than 15 characters
Database Product Obvious
Driver Class The name of JDBC driver class used for the connection.
Connection URL JDBC connection URL for the connection
Editable Row True = query results may be updated graphically by double clicking the data in the query result. Note: this is also depends on the implementation of the JDBC driver.
Display Font Size Set the default font size for displaying the data in query and listing results.
Conntion Type Type 1 - Use Class.forName(driverClass) to load the JDBC driver and use DriverManager.getConnection(String url, String user, String password) to get a connection

Type 2 - Use Class.forName(driverClass) to load the JDBC driver and use DriverManager.getConnection(String url, Properties info) to get a connection, where:
Properties info = new Properties();
info.put("user", userid);
info.put("password", password);

Type 3 -Use Class.forName(driverClass) to load the JDBC driver and use DriverManager.getConnection(String url) to get a connection

weblogic.jdbc.mssqlserver4.Driver - Use WebLogic jDriver for Microsoft SQL Server

sybase_jconnect_v4 - Use JConnect version 4 for Sybase Adaptive servers

sybase_jconnect_v5 - Use JConnect version 5 for Sybase Adaptive servers

sybase_jconnect_v6 - Use JConnect version 6 for Sybase Adaptive servers

org.gjt.mm.mysql.Driver - Use MM.MySQL Type 4 JDBC driver for MySQL