Package fr.androlibjson

Examples of fr.androlibjson.DBQueryHelper


   /**
    * @param args the command line arguments
    */
   public static void main(String[] args) {
      DBQueryHelper db = new DBQueryHelper("http","localhost/androlibjson/index.php");
      String SQL = "SELECT * FROM test";
      ArrayList ar = db.rawRequest("", SQL);
      for (int i=0;i<ar.size();i++){
         System.out.println(ar.get(i).toString());
      }
   }
View Full Code Here

TOP

Related Classes of fr.androlibjson.DBQueryHelper

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.