Package application.database

Examples of application.database.Database


  public Database db;
  public UserInterface ui;
 
  public void run() {
    try {
      db = new Database("test.db");
      ui = new UserInterface(db);
     
      ui.show();
           
    } catch (Exception e) {
View Full Code Here


public class PatientTest {

  Database db;
 
  public PatientTest() throws Exception {
    db = new Database("test.db");
    //db.createTables();
  }
View Full Code Here

TOP

Related Classes of application.database.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.