Package | Description |
---|---|
com.hfg.sql.jdbc |
JDBC4-compatible classes for database access.
|
com.hfg.sql.jdbc.postgresql |
Modifier and Type | Method and Description |
---|---|
JDBCServer |
JDBCDataSource.getServer() |
JDBCServer |
JDBCServer.setHost(String inValue)
Specifies the host machine where the database server is located.
|
JDBCServer |
JDBCServer.setName(String inValue) |
JDBCServer |
JDBCServer.setPort(int inValue)
Specifies the port to use to connect to the database via JDBC.
|
Modifier and Type | Method and Description |
---|---|
abstract JDBCConnectionPool |
RDBMS.establishConnectionPool(JDBCServer inServer,
String inDatabaseName,
LoginCredentials inCredentials,
JDBCConnectionPoolSettings inPoolSettings) |
abstract String |
RDBMS.getConnectString(JDBCServer inServer,
String inDatabaseName) |
abstract String |
RDBMS.getConnectString(JDBCServer inServer,
String inDatabaseName,
JDBCConnectionSettings inSettings) |
Constructor and Description |
---|
JDBCConnection(JDBCServer inServer,
String inDatabaseName,
LoginCredentials inCredentials) |
JDBCConnection(JDBCServer inServer,
String inDatabaseName,
LoginCredentials inCredentials,
JDBCConnectionSettings inSettings) |
JDBCConnectionPool(JDBCServer inServer,
String inDatabaseName) |
JDBCConnectionPool(JDBCServer inServer,
String inDatabaseName,
LoginCredentials inCredentials) |
JDBCDataSource(JDBCServer inServer,
String inDatabaseName) |
Modifier and Type | Method and Description |
---|---|
PostgreSQLConnectionPool |
PostgreSQL.establishConnectionPool(JDBCServer inServer,
String inDatabaseName,
LoginCredentials inCredentials,
JDBCConnectionPoolSettings inPoolSettings) |
PostgreSQLConnection |
PostgreSQL.getConnection(JDBCServer inServer,
String inDatabaseName,
LoginCredentials inCredentials) |
String |
PostgreSQL.getConnectString(JDBCServer inServer,
String inDatabaseName) |
String |
PostgreSQL.getConnectString(JDBCServer inServer,
String inDatabaseName,
JDBCConnectionSettings inSettings) |
Constructor and Description |
---|
PostgreSQLConnection(JDBCServer inServer,
String inDatabaseName,
LoginCredentials inCredentials) |
PostgreSQLConnection(JDBCServer inServer,
String inDatabaseName,
LoginCredentials inCredentials,
JDBCConnectionSettings inSettings) |
PostgreSQLConnectionPool(JDBCServer inServer,
String inDatabaseName) |
PostgreSQLConnectionPool(JDBCServer inServer,
String inDatabaseName,
LoginCredentials inCredentials) |
jataylor@hairyfatguy.com