Java Example Step 1: Loading the USoft JDBC classes

Previous Next

This code fragment illustrates how to load the USoft JDBC driver classes within a Java program:

//Step 1

try

{

    Class.forName("com.usoft.jrec.JrecDriver");

}

    catch (ClassNotFoundException e)

{

    System.err.println("USoft JDBC driver not found: " +

    e.getMessage());

}