1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
private SharedPoolDataSource myDatasource = null;
private String url;
private String userName;
private String password;
private int maxDbConnection;
private int minDbConnection;
// Récupérer la valeur des properties (paramètres) pour url,userName,
// password, maxDbConnection et minDbConnection
// Initialisation de datasource
try {
myDatasource =
UtilsDb.setupSharedPoolDataSource(urlCachesDB, userCachesDB, passwordCachesDB, maxDbConnection, minDbConnection);
}
catch (Exception e) {
System.err.println(e,getMessage());
// Sortir avec erreur
}
// Utilisation
Connection myConnection = null;
try
{
connection = myDatasource.getConnection();
// Accès à la DB pour lecture,écriture ....
}
catch (Exception e) {
System.err.println(e.getMessage());
// Sortir avec erreur
}
finally {
connection.close();
myDatasource.close();
}
|
Partager