Package common.db

Examples of common.db.QueryRunner.query()


  public void testMultySelect()
  {
    //new QueryRunner(); rad sa predefinisanim DBParam, pogledaj u klasi
    QueryRunner queryRunner = new QueryRunner(dbParam); // new QuerryRunner(dbParam); da radis sa proizvoljnom bazom
    List<Proba> lists = queryRunner.query(sqlRes.query("multySelect"), ProbaRowProcessor.getListHandler());
    for (Proba p : lists)
    {
      System.out.println("testMultySelect:" + p.toString());
    }
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.