Package org.jiql.jdbc

Examples of org.jiql.jdbc.Driver.connect()


  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
Copyright © 2018 www.massapi.com. 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.