|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ConnectionPool.DBConfig | |
|---|---|
| com.bristle.javalib.sql | |
| com.bristle.javalib.sql.oracle | |
| Uses of ConnectionPool.DBConfig in com.bristle.javalib.sql |
|---|
| Classes in com.bristle.javalib.sql that implement ConnectionPool.DBConfig | |
|---|---|
static class |
ConnectionPool.SimpleDBConfig
Sample class implementing the DBConfig interface. |
| Methods in com.bristle.javalib.sql that return ConnectionPool.DBConfig | |
|---|---|
ConnectionPool.DBConfig |
ConnectionPoolUtil.getDefaultDBConfig()
Get the default DBConfig. |
| Methods in com.bristle.javalib.sql with parameters of type ConnectionPool.DBConfig | |
|---|---|
static int |
ConnectionPoolUtil.executeSQL(Connection conn,
String strSQL,
Logger logger,
int intLogLevelOfOperation,
ConnectionPool pool,
ConnectionPool.DBConfig dbconfig)
Connect to the database, execute a string of SQL, commit, and disconnect. |
Connection |
ConnectionPool.getConnection(ConnectionPool.DBConfig objConfig)
Get a connection from the pool. |
static int |
ConnectionPoolUtil.getIntValueFromDB(Connection conn,
String strSQL,
Logger logger,
int intLogLevelOfOperation,
ConnectionPool pool,
ConnectionPool.DBConfig dbconfig)
Connect to the database, get a single int value from the resultset returned by the specified SQL statement, and disconnect, returning the value. |
static ConnectionPoolUtil.DBContext |
ConnectionPoolUtil.getResultSet(Connection conn,
String strSQL,
int intType,
int intConcurrency,
Logger logger,
int intLogLevelOfOperation,
ConnectionPool pool,
ConnectionPool.DBConfig dbconfig)
Connect to the database and get the data as a ResultSet with the specified type and concurrency. |
void |
ConnectionPoolUtil.setDefaultDBConfig(ConnectionPool.DBConfig configNew)
Set the default DBConfig. |
| Uses of ConnectionPool.DBConfig in com.bristle.javalib.sql.oracle |
|---|
| Methods in com.bristle.javalib.sql.oracle with parameters of type ConnectionPool.DBConfig | |
|---|---|
static ConnectionPoolUtil.DBContext |
OracleConnectionPoolUtil.getResultSetFromOracleFunction(Connection conn,
String strCall,
Logger logger,
int intLogLevelOfOperation,
ConnectionPool pool,
ConnectionPool.DBConfig dbconfig)
Connect to the database and get the data as a readonly forward-only ResultSet by calling an Oracle stored function that returns a ResultSet. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||