JDBC Driver
The JDBC Driver is installed on Windows machines along withc-tree if the proper option is checked. See “Installing on Windows” chapter for details.
On other platforms the driver library is installed under driver/sql.jdbc in the c-tree directory.
The driver library is named “ctreeJDBC.jar” and must be available in the Java Classpath in order to take advantage of its classes.
The following code snippet shows how to connect to c-tree SQL from a Java program:
Class.forName ("ctree.jdbc.ctreeDriver");
conn = DriverManager.getConnection ("jdbc:ctree:6597@localhost:ctreeSQL", "ADMIN", "ADMIN");
Please consult Faircom’s documentation for additional information.