Package net.sf.xbus.technical.database

Examples of net.sf.xbus.technical.database.DBConnection


          .getValueOptional("Base", "Journal", "DBConnection");
      if (dbConnectionName == null)
      {
        dbConnectionName = DBConnection.UNNAMED;
      }
      DBConnection dbcon = DBConnection.getInstance(dbConnectionName);

      if ((dbcon.getUrl() != null)
          && (dbcon.getUrl().startsWith("jdbc:hsqldb")))
      {
        dbcon.executeUpdate("shutdown compact");
      }
    }
    catch (XException e)
    {
      System.exit(1);
View Full Code Here


          .getValueOptional("Base", "Journal", "DBConnection");
      if (dbConnectionName == null)
      {
        dbConnectionName = DBConnection.UNNAMED;
      }
      DBConnection dbCon = DBConnection.getInstance(dbConnectionName);

      ResultSet result = dbCon.executeRead(sqlBefehl);
      Vector list = new Vector();

      while (result.next())
      {
        ReadJournal journal = new ReadJournal();
View Full Code Here

TOP

Related Classes of net.sf.xbus.technical.database.DBConnection

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.