Package wolf.util

Examples of wolf.util.Database


//        bm.save("data/blocks.txt", "data/lots.txt");
//      }
//    }).start();
   
    try {
      Database d = new Database();
      d.open("data/city.db");
      d.saveCityData(this);
      d.close();
      log.log("Database saved");
    } catch (ClassNotFoundException e) {
      e.printStackTrace();
      System.err.println("Sqlite did not launch correctly!");
    } catch (SQLException e) {
View Full Code Here

TOP

Related Classes of wolf.util.Database

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.