Package de.hpi.eworld.db

Examples of de.hpi.eworld.db.DatabaseAccess.checkSchema()


  @Before
  public void initDBSettings() {
    DatabaseAccess dba = DatabaseAccess.getInstance();
    backupSettings = dba.readSettings();
    dba.writeSettings(DB_URL, DB_PORT, DB_NAME, DB_USER, DB_PW);
    if(!this.schemaIsOk && !dba.checkSchema()) {
      dba.setSchema();
      this.schemaIsOk = true;
    }
  }
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.