[
https://forge.continuent.org/jira/browse/SEQUOIA-1026?page=comments#action_14242
]
Pierre Besson-Deblon commented on SEQUOIA-1026:
-----------------------------------------------
On my version we corrected
- DatabaseBackend.isJDBCConnected()
- DatabaseBackend.isValidConnection()
- DriverCompliance.complianceTest()
- VariablePoolConnection.run()
- AbstractConnectionManager.run()
with correction like that :
Statement s = c.getConnection().createStatement();
try {
s.execute(connectionTestStatement);
} finally {
if (s!=null)
try {
s.close();
} catch (SQLException e) {
logger.warn("Error on statement
closure",e);
}
}
> Test connection statements are not properly closed
> --------------------------------------------------
>
> Key: SEQUOIA-1026
> URL: https://forge.continuent.org/jira/browse/SEQUOIA-1026
> Project: Sequoia
> Type: Bug
> Components: Core
> Versions: Sequoia 2.9
> Reporter: Pierre Besson-Deblon
> Priority: Minor
>
> Original Estimate: 30 minutes
> Remaining: 30 minutes
>
> Many test connection statements are opened and not explicitly closed.
> Those statements could live for a long time depending on SGBD.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
https://forge.continuent.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira
_______________________________________________
Sequoia mailing list
[email protected]
https://forge.continuent.org/mailman/listinfo/sequoia