org.hibernate.testing.jdbc.leak.H2IdleConnectionCounter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-testing-jakarta Show documentation
Show all versions of hibernate-testing-jakarta Show documentation
Support for testing Hibernate ORM Jakarta functionality
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or .
*/
package org.hibernate.testing.jdbc.leak;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import org.hibernate.dialect.Dialect;
import org.hibernate.dialect.H2Dialect;
/**
* @author Vlad Mihalcea
*/
public class H2IdleConnectionCounter implements IdleConnectionCounter {
public static final IdleConnectionCounter INSTANCE = new H2IdleConnectionCounter();
@Override
public boolean appliesTo(Class extends Dialect> dialect) {
return H2Dialect.class.isAssignableFrom( dialect );
}
@Override
public int count(Connection connection) {
try ( Statement statement = connection.createStatement() ) {
try ( ResultSet resultSet = statement.executeQuery(
"select count(*) " +
"from information_schema.sessions " +
"where statement is null" ) ) {
while ( resultSet.next() ) {
return resultSet.getInt( 1 );
}
return 0;
}
}
catch ( SQLException e ) {
throw new IllegalStateException( e );
}
}
}