All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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