Package org.jiql.jdbc

Examples of org.jiql.jdbc.Driver


  Properties props = new Properties();
  props.put("user",user);
  props.put("password",password);

  Class clazz = Class.forName("org.jiql.jdbc.Driver");
  Driver driver = (Driver) clazz.newInstance();

  Conn = driver.connect(url,props);


Statement Stmt = Conn.createStatement();
Stmt.execute(sql);
result = Stmt.getResultSet();
View Full Code Here

TOP

Related Classes of org.jiql.jdbc.Driver

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.