Package database

Examples of database.HsqlDbConnection


   *
   */
  public GestionConnection(){
    /* Création de la connection */
    try{
      dbCon =  new HsqlDbConnection("jdbc:hsqldb:file:data/ntpdb");     
      connection = dbCon.getConnection();     
    }catch(ClassNotFoundException cnfe){
      cnfe.printStackTrace();
      //System.out.println(cnfe.getMessage());
    }catch(SQLException se){
View Full Code Here

TOP

Related Classes of database.HsqlDbConnection

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.