Package com.scarrone.sqlite

Examples of com.scarrone.sqlite.SQLiteHander.executeQuery()


  }
  private void LoadPlots(){
    Data.purgePlots();
    //SQLite db = null;
    SQLiteHander SQL = new SQLiteHander();
    SQL.executeQuery("SELECT Title, Desc FROM plotElements");
    ResultArrayStruct result = SQL.getResultStruct();
    System.out.println(result.getColCount());
    for(ArrayList<String> row : result.getRows()){
      Data.PlotElements.add(new PlotObject(row.get(0), row.get(1)));
    }
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.