ij Commands and Errors Reference
Page 12 of 39

Driver

Syntax

DRIVER String

Description

Takes the value of the string and issues a Class.forName request to load the named class. The class is expected to be a JDBC driver that registers itself with java.sql.DriverManager.

If the Driver command succeeds, a new ij prompt appears for the next command.

Example

ij> -- load the Cloudscape driver so that a connection
-- can be made: 
driver 'COM.cloudscape.core.JDBCDriver';
ij> connect 'jdbc:cloudscape:menuDB;create=true';
ij>