296297298299300301302303
// *********** JDBC Specific method implementations ************************ @Override protected void checkClosed() { if (isClosed()) { throw new DbSessionClosedException(this, "Connection is closed"); } }
225226227228229230231232
return EXTENDED_CLIENT_CAPABILITIES; } protected void checkClosed() { if (isClosed()) { throw new DbSessionClosedException(this, "This connection has been closed"); } }
7273747576777879
} @Override protected void checkClosed() { if (isClosed()) { throw new DbSessionClosedException(this, "This connection has been closed"); } }