Basic HTML version of Foils prepared 23 June 1997

Foil 47 Example - Using Imaginary's mSQL Driver

From Overview of JDBC and its use with Microsoft Access UC Web Applications Certificate -- June 26 97. by Nancy McCracken(Sangetta Aggarwal, Udayan Parvate, Tom Pulikal)


1 import java.net.URL;
2 import java.sql.*;
3 import imaginary.sql.*;
4 class Select {
5 public static void main (String argv[] ) {
6 try {
7 //load the class imaginary/sql/iMsqlDriver
8 Class.forName (" imaginary.sql.iMsqlDriver");
9 String url = jdbc:msql://host.npac.syr.edu:4333/test";
10 //connect to the test database using the driver URL
11 Connection conn = DriverManager.getConnection( url, "scott", "tiger");
12 //create the query statement and get the result set
13 Statement stmt = conn.createStatement();
14 ResultSet rs = stmt.executeQuery (" select * from
15 test_table order by id");
16 System.out.println ("Got results :");
17 //print the results in a loop

in Table To:


© Northeast Parallel Architectures Center, Syracuse University, npac@npac.syr.edu

If you have any comments about this server, send e-mail to webmaster@npac.syr.edu.

Page produced by wwwfoil on Thu Jan 8 1998