org.hsqldb.jdbcDriver : Vendor Driver : java.sql : Java by API examples (example source code) Organized by topic

Java by API
C++
Java by API Home »  java.sql   » [  Vendor Driver  ]   
 



org.hsqldb.jdbcDriver

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.Statement;

public class Main {
  public static void main(String[] argsthrows Exception {
    setup();
  }

  static Connection conn;

  static Statement st;

  public static void setup() {
    try {
      // Step 1: Load the JDBC driver.
      Class.forName("org.hsqldb.jdbcDriver");
      System.out.println("Driver Loaded.");
      // Step 2: Establish the connection to the database.
      String url = "jdbc:hsqldb:data/tutorial";

      conn = DriverManager.getConnection(url, "sa""");
      System.out.println("Got Connection.");

      st = conn.createStatement();
    catch (Exception e) {
      System.err.println("Got an exception! ");
      e.printStackTrace();
      System.exit(0);
    }
  }
}

           
       
Download: JDBCEnvironment.zip   ( 595  K )  
Related examples in the same category
1.  sun.jdbc.odbc.JdbcOdbcDriver








Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.