1011121314151617181920
public Database db; public UserInterface ui; public void run() { try { db = new Database("test.db"); ui = new UserInterface(db); ui.show(); } catch (Exception e) {
1819202122232425
public class PatientTest { Database db; public PatientTest() throws Exception { db = new Database("test.db"); //db.createTables(); }