Package org.dbwiki.driver.rdbms

Examples of org.dbwiki.driver.rdbms.DatabaseConnector.dropDatabase()


      Connection con = connector.getConnection();
      Statement stmt = con.createStatement();
      stmt.execute("DELETE FROM " + RelationDatabase + " WHERE " + RelDatabaseColName + " = '" + name + "'");
      System.out.println("DELETE FROM " + RelationDatabase + " WHERE " + RelDatabaseColName + " = '" + name + "'");
      stmt.close();
      connector.dropDatabase(con, name);
      /*Statement stmt = con.createStatement();
      stmt.execute("DELETE FROM " + RelationDatabase + " WHERE " + RelDatabaseColName + " = '" + name + "'");
      stmt.close();*/
      con.close();
    } catch (Exception exception) {
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.