public abstract class WrappedStatement extends JBossWrapper implements Statement, StatementAccess
| Modifier and Type | Field and Description |
|---|---|
protected static Integer |
defaultFetchSize
Default fetch size
|
protected String |
jndiName
The jndi name
|
protected boolean |
spy
Spy functionality
|
protected static org.jboss.logging.Logger |
spyLogger
The spy logger
|
CLOSE_ALL_RESULTS, CLOSE_CURRENT_RESULT, EXECUTE_FAILED, KEEP_CURRENT_RESULT, NO_GENERATED_KEYS, RETURN_GENERATED_KEYS, SUCCESS_NO_INFO| Constructor and Description |
|---|
WrappedStatement(WrappedConnection lc,
Statement s,
boolean spy,
String jndiName)
Constructor
|
| Modifier and Type | Method and Description |
|---|---|
void |
addBatch(String sql) |
void |
cancel() |
protected void |
checkConfiguredQueryTimeout()
Check configured query timeout
|
protected SQLException |
checkException(Throwable t)
Check exception
|
protected void |
checkTransaction()
Check transaction
|
protected void |
checkTransactionActive()
Check if transaction is active
|
void |
clearBatch() |
void |
clearWarnings() |
void |
close() |
protected void |
closeResultSets()
Close result sets
|
boolean |
execute(String sql) |
boolean |
execute(String sql,
int autoGeneratedKeys) |
boolean |
execute(String sql,
int[] columnIndexes) |
boolean |
execute(String sql,
String[] columnNames) |
int[] |
executeBatch() |
ResultSet |
executeQuery(String sql) |
int |
executeUpdate(String sql) |
int |
executeUpdate(String sql,
int autoGeneratedKeys) |
int |
executeUpdate(String sql,
int[] columnIndexes) |
int |
executeUpdate(String sql,
String[] columnNames) |
Connection |
getConnection() |
int |
getFetchDirection() |
int |
getFetchSize() |
ResultSet |
getGeneratedKeys() |
int |
getMaxFieldSize() |
int |
getMaxRows() |
boolean |
getMoreResults() |
boolean |
getMoreResults(int current) |
int |
getQueryTimeout() |
ResultSet |
getResultSet() |
int |
getResultSetConcurrency() |
int |
getResultSetHoldability() |
int |
getResultSetType() |
Statement |
getUnderlyingStatement()
Get the underlying statement
|
int |
getUpdateCount() |
SQLWarning |
getWarnings() |
protected Statement |
getWrappedObject()
Get the wrapped statement
|
protected void |
internalClose()
Close
|
boolean |
isClosed() |
boolean |
isPoolable() |
protected void |
lock()
Lock connection
|
protected ResultSet |
registerResultSet(ResultSet resultSet)
Register a result set
|
void |
setCursorName(String name) |
void |
setEscapeProcessing(boolean enable) |
void |
setFetchDirection(int direction) |
void |
setFetchSize(int rows) |
void |
setMaxFieldSize(int max) |
void |
setMaxRows(int max) |
void |
setPoolable(boolean poolable) |
void |
setQueryTimeout(int timeout) |
protected void |
unlock()
Unlock connection
|
protected void |
unregisterResultSet(WrappedResultSet resultSet)
Unregister a result set
|
protected abstract WrappedResultSet |
wrapResultSet(ResultSet resultSet,
boolean spy,
String jndiName)
Wrap the result set
|
isWrapperFor, unwrapclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitcloseOnCompletion, isCloseOnCompletionisWrapperFor, unwrapprotected static org.jboss.logging.Logger spyLogger
protected final boolean spy
protected final String jndiName
protected static Integer defaultFetchSize
public WrappedStatement(WrappedConnection lc, Statement s, boolean spy, String jndiName)
lc - The connections - The statementspy - The spy valuejndiName - The jndi nameprotected void lock()
throws SQLException
SQLException - Thrown if an error occursprotected void unlock()
public void close()
throws SQLException
close in interface AutoCloseableclose in interface StatementSQLExceptionpublic boolean execute(String sql) throws SQLException
execute in interface StatementSQLExceptionpublic boolean execute(String sql, int autoGeneratedKeys) throws SQLException
execute in interface StatementSQLExceptionpublic boolean execute(String sql, int[] columnIndexes) throws SQLException
execute in interface StatementSQLExceptionpublic boolean execute(String sql, String[] columnNames) throws SQLException
execute in interface StatementSQLExceptionpublic Connection getConnection() throws SQLException
getConnection in interface StatementSQLExceptionpublic SQLWarning getWarnings() throws SQLException
getWarnings in interface StatementSQLExceptionpublic void clearWarnings()
throws SQLException
clearWarnings in interface StatementSQLExceptionpublic ResultSet executeQuery(String sql) throws SQLException
executeQuery in interface StatementSQLExceptionpublic int executeUpdate(String sql) throws SQLException
executeUpdate in interface StatementSQLExceptionpublic int executeUpdate(String sql, int autoGeneratedKeys) throws SQLException
executeUpdate in interface StatementSQLExceptionpublic int executeUpdate(String sql, int[] columnIndexes) throws SQLException
executeUpdate in interface StatementSQLExceptionpublic int executeUpdate(String sql, String[] columnNames) throws SQLException
executeUpdate in interface StatementSQLExceptionpublic int getMaxFieldSize()
throws SQLException
getMaxFieldSize in interface StatementSQLExceptionpublic void setMaxFieldSize(int max)
throws SQLException
setMaxFieldSize in interface StatementSQLExceptionpublic int getMaxRows()
throws SQLException
getMaxRows in interface StatementSQLExceptionpublic void setMaxRows(int max)
throws SQLException
setMaxRows in interface StatementSQLExceptionpublic void setEscapeProcessing(boolean enable)
throws SQLException
setEscapeProcessing in interface StatementSQLExceptionpublic int getQueryTimeout()
throws SQLException
getQueryTimeout in interface StatementSQLExceptionpublic void setQueryTimeout(int timeout)
throws SQLException
setQueryTimeout in interface StatementSQLExceptionpublic void cancel()
throws SQLException
cancel in interface StatementSQLExceptionpublic void setCursorName(String name) throws SQLException
setCursorName in interface StatementSQLExceptionpublic ResultSet getResultSet() throws SQLException
getResultSet in interface StatementSQLExceptionpublic int getUpdateCount()
throws SQLException
getUpdateCount in interface StatementSQLExceptionpublic boolean getMoreResults()
throws SQLException
getMoreResults in interface StatementSQLExceptionpublic boolean getMoreResults(int current)
throws SQLException
getMoreResults in interface StatementSQLExceptionpublic void setFetchDirection(int direction)
throws SQLException
setFetchDirection in interface StatementSQLExceptionpublic int getFetchDirection()
throws SQLException
getFetchDirection in interface StatementSQLExceptionpublic void setFetchSize(int rows)
throws SQLException
setFetchSize in interface StatementSQLExceptionpublic int getFetchSize()
throws SQLException
getFetchSize in interface StatementSQLExceptionpublic int getResultSetConcurrency()
throws SQLException
getResultSetConcurrency in interface StatementSQLExceptionpublic int getResultSetType()
throws SQLException
getResultSetType in interface StatementSQLExceptionpublic void addBatch(String sql) throws SQLException
addBatch in interface StatementSQLExceptionpublic void clearBatch()
throws SQLException
clearBatch in interface StatementSQLExceptionpublic int[] executeBatch()
throws SQLException
executeBatch in interface StatementSQLExceptionpublic ResultSet getGeneratedKeys() throws SQLException
getGeneratedKeys in interface StatementSQLExceptionpublic int getResultSetHoldability()
throws SQLException
getResultSetHoldability in interface StatementSQLExceptionpublic boolean isClosed()
throws SQLException
isClosed in interface StatementSQLExceptionpublic boolean isPoolable()
throws SQLException
isPoolable in interface StatementSQLExceptionpublic void setPoolable(boolean poolable)
throws SQLException
setPoolable in interface StatementSQLExceptionpublic Statement getUnderlyingStatement() throws SQLException
getUnderlyingStatement in interface StatementAccessSQLException - when already closedprotected Statement getWrappedObject() throws SQLException
getWrappedObject in class JBossWrapperSQLException - Thrown if an error occursprotected SQLException checkException(Throwable t) throws SQLException
t - The throwableSQLException - Thrown if an error occursprotected void checkTransaction()
throws SQLException
SQLException - Thrown if an error occursprotected void checkConfiguredQueryTimeout()
throws SQLException
SQLException - Thrown if an error occursprotected void checkTransactionActive()
throws SQLException
SQLException - Thrown if an error occursprotected void internalClose()
throws SQLException
SQLException - Thrown if an error occursprotected abstract WrappedResultSet wrapResultSet(ResultSet resultSet, boolean spy, String jndiName)
resultSet - The result setspy - The spy valuejndiName - The jndi nameprotected ResultSet registerResultSet(ResultSet resultSet)
resultSet - The result setprotected void unregisterResultSet(WrappedResultSet resultSet)
resultSet - The result setprotected void closeResultSets()
Copyright © 2013 IronJacamar (http://www.ironjacamar.org)