|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use StatementHandle | |
|---|---|
| com.jolbox.bonecp | The core package for the BoneCP connection pool. |
| com.jolbox.bonecp.hooks | Support for event notification on a connection state. |
| Uses of StatementHandle in com.jolbox.bonecp |
|---|
| Subclasses of StatementHandle in com.jolbox.bonecp | |
|---|---|
class |
CallableStatementHandle
Wrapper around CallableStatement. |
class |
PreparedStatementHandle
Wrapper around JDBC PreparedStatement. |
| Methods in com.jolbox.bonecp that return StatementHandle | |
|---|---|
StatementHandle |
StatementCache.get(String key)
Retrieves the cached statement identified by the given key |
StatementHandle |
IStatementCache.get(String sql)
Retrieves the cached statement identified by the given key |
StatementHandle |
StatementCache.get(String sql,
int autoGeneratedKeys)
|
StatementHandle |
IStatementCache.get(String sql,
int autoGeneratedKeys)
Retrieves the cached statement identified by the given key |
StatementHandle |
StatementCache.get(String sql,
int[] columnIndexes)
|
StatementHandle |
IStatementCache.get(String sql,
int[] columnIndexes)
Retrieves the cached statement identified by the given key |
StatementHandle |
StatementCache.get(String sql,
int resultSetType,
int resultSetConcurrency)
|
StatementHandle |
IStatementCache.get(String sql,
int resultSetType,
int resultSetConcurrency)
Retrieves the cached statement identified by the given key |
StatementHandle |
StatementCache.get(String sql,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability)
|
StatementHandle |
IStatementCache.get(String sql,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability)
Retrieves the cached statement identified by the given key |
StatementHandle |
StatementCache.get(String sql,
String[] columnNames)
|
StatementHandle |
IStatementCache.get(String sql,
String[] columnNames)
Retrieves the cached statement identified by the given key |
| Methods in com.jolbox.bonecp that return types with arguments of type StatementHandle | |
|---|---|
protected LinkedTransferQueue<StatementHandle> |
BoneCP.getStatementsPendingRelease()
Returns the statementsPendingRelease field. |
| Methods in com.jolbox.bonecp with parameters of type StatementHandle | |
|---|---|
void |
StatementCache.putIfAbsent(String key,
StatementHandle handle)
|
void |
IStatementCache.putIfAbsent(String cacheKey,
StatementHandle statementHandle)
Wrapper for map putIfAbsent. |
protected boolean |
StatementHandle.tryTransferOffer(StatementHandle e)
Tries to move the item to a waiting consumer. |
| Constructor parameters in com.jolbox.bonecp with type arguments of type StatementHandle | |
|---|---|
StatementReleaseHelperThread(BlockingQueue<StatementHandle> queue,
BoneCP pool)
Helper Thread constructor. |
|
| Uses of StatementHandle in com.jolbox.bonecp.hooks |
|---|
| Methods in com.jolbox.bonecp.hooks with parameters of type StatementHandle | |
|---|---|
void |
ConnectionHook.onAfterStatementExecute(ConnectionHandle conn,
StatementHandle statement,
String sql,
Map<Object,Object> params)
Called right after a statement has executed. |
void |
AbstractConnectionHook.onAfterStatementExecute(ConnectionHandle conn,
StatementHandle statement,
String sql,
Map<Object,Object> params)
|
void |
ConnectionHook.onBeforeStatementExecute(ConnectionHandle conn,
StatementHandle statement,
String sql,
Map<Object,Object> params)
Called before a statement is about to execute. |
void |
AbstractConnectionHook.onBeforeStatementExecute(ConnectionHandle conn,
StatementHandle statement,
String sql,
Map<Object,Object> params)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||