![JAR search and dependency download from the Maven repository](/logo.png)
djdbc.ExtendedConnection Maven / Gradle / Ivy
package djdbc;
import java.sql.Connection;
final class ExtendedConnection {
final Connection jdbcConnection;
final PreparedStatementCache preparedStatementCache;
ExtendedConnection(Connection jdbcConnection) {
this.jdbcConnection = jdbcConnection;
this.preparedStatementCache = new PreparedStatementCache();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy