Package | Description |
---|---|
com.hfg.sql.jdbc |
JDBC4-compatible classes for database access.
|
com.hfg.sql.jdbc.postgresql |
Modifier and Type | Class and Description |
---|---|
class |
JDBCConnectionPool<T extends JDBCConnectionPoolSettings>
A JDBC-compatible connection pool.
|
Modifier and Type | Method and Description |
---|---|
JDBCConnectionPoolSettings |
JDBCConnectionPoolSettings.setAvailabilityTimeoutSec(Integer inValue)
Specifies the maximum amount of time to wait for a connection to become available
when requesting a connection from the pool.
|
JDBCConnectionPoolSettings |
JDBCConnectionPoolSettings.setMaxConnections(Integer inValue) |
JDBCConnectionPoolSettings |
JDBCConnectionPoolSettings.setMaxIdleTimeSec(Integer inValue)
Specifies the maximum amount of time that a connection above the minimum number
of pool connections can sit idle before potentially being closed.
|
JDBCConnectionPoolSettings |
JDBCConnectionPoolSettings.setMinConnections(Integer inValue) |
Modifier and Type | Method and Description |
---|---|
abstract JDBCConnectionPool |
RDBMS.establishConnectionPool(JDBCServer inServer,
String inDatabaseName,
LoginCredentials inCredentials,
JDBCConnectionPoolSettings inPoolSettings) |
JDBCConnectionPool |
JDBCServer.establishConnectionPool(String inDatabaseName,
LoginCredentials inCredentials,
JDBCConnectionPoolSettings inPoolSettings) |
Modifier and Type | Method and Description |
---|---|
PostgreSQLConnectionPool |
PostgreSQL.establishConnectionPool(JDBCServer inServer,
String inDatabaseName,
LoginCredentials inCredentials,
JDBCConnectionPoolSettings inPoolSettings) |
jataylor@hairyfatguy.com