import java.sql.*; import java.util.*; public class QedConnect { public static void main(String[] args) { try{ Driver driver = (Driver)Class.forName("com.quadcap.jdbc.JdbcDriver").newInstance(); System.err.println(driver); Properties driverProps = new Properties(); driverProps.put("create", "false"); driverProps.put("user", "DUMMY"); Connection con = driver.connect("jdbc:qed:C:\\tmp", driverProps); con.close(); }// try catch(Exception ex){ ex.printStackTrace(); System.exit(1); }// catch }// method }// class