throws ResourceException
{
Connection conn = _driverConnection;
if (conn == null)
throw new ResourceException(L.l("connection is closed"));
try {
conn.commit();
} catch (SQLException e) {
throw new ResourceException(e) ;
}
try {
setAutoCommit(_oldAutoCommit);
} catch (SQLException e) {
throw new ResourceException(e) ;
}
}