Example - Using Imaginary’s mSQL Driver
public static void main (String argv[] ) {
//load the class imaginary/sql/iMsqlDriver
Class.forName (“ imaginary.sql.iMsqlDriver”);
String url = jdbc:msql://host.npac.syr.edu:4333/test”;
//connect to the test database using the driver URL
Connection conn = DriverManager.getConnection( url, “scott”, “tiger”);
//create the query statement and get the result set
Statement stmt = conn.createStatement();
ResultSet rs = stmt.executeQuery (“ select * from
test_table order by id”);
System.out.println (“Got results :”);
//print the results in a loop