To use the JDBC Client, you first must register it with the JDBC Driver Manager. You can register the JDBC Client in any of the following ways:
• Method 1: Set the Java property jdbc.drivers using the Java -D option. The jdbc.drivers property is defined as a colon-separated list of driver class names. For example:
• Method 2: Set the Java property jdbc.drivers from within your Java application or applet. To do this, include the following code in your application or applet, and call DriverManager.getConnection():
• Method 3: Explicitly load the driver class using the standard Class.forName() method. To do this, include the following code in your application or applet and call DriverManager.getConnection():