*
*/
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){