|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.commons.dbcp.AbandonedTrace
org.apache.commons.dbcp.DelegatingResultSet
public class DelegatingResultSet
A base delegating implementation of ResultSet.
All of the methods from the ResultSet interface
simply call the corresponding method on the "delegate"
provided in my constructor.
Extends AbandonedTrace to implement result set tracking and logging of code which created the ResultSet. Tracking the ResultSet ensures that the Statment which created it can close any open ResultSet's on Statement close.
| Field Summary |
|---|
| Fields inherited from interface java.sql.ResultSet |
|---|
CLOSE_CURSORS_AT_COMMIT, CONCUR_READ_ONLY, CONCUR_UPDATABLE, FETCH_FORWARD, FETCH_REVERSE, FETCH_UNKNOWN, HOLD_CURSORS_OVER_COMMIT, TYPE_FORWARD_ONLY, TYPE_SCROLL_INSENSITIVE, TYPE_SCROLL_SENSITIVE |
| Constructor Summary | |
|---|---|
DelegatingResultSet(Statement stmt,
ResultSet res)
Create a wrapper for the ResultSet which traces this ResultSet to the Statement which created it and the code which created it. |
|
| Method Summary | |
|---|---|
boolean |
absolute(int row)
|
void |
afterLast()
|
void |
beforeFirst()
|
void |
cancelRowUpdates()
|
void |
clearWarnings()
|
void |
close()
Wrapper for close of ResultSet which removes this result set from being traced then calls close on the original ResultSet. |
void |
deleteRow()
|
boolean |
equals(Object obj)
|
int |
findColumn(String columnName)
|
boolean |
first()
|
Array |
getArray(int i)
|
Array |
getArray(String colName)
|
InputStream |
getAsciiStream(int columnIndex)
|
InputStream |
getAsciiStream(String columnName)
|
BigDecimal |
getBigDecimal(int columnIndex)
|
BigDecimal |
getBigDecimal(int columnIndex,
int scale)
Deprecated. |
BigDecimal |
getBigDecimal(String columnName)
|
BigDecimal |
getBigDecimal(String columnName,
int scale)
Deprecated. |
InputStream |
getBinaryStream(int columnIndex)
|
InputStream |
getBinaryStream(String columnName)
|
Blob |
getBlob(int i)
|
Blob |
getBlob(String colName)
|
boolean |
getBoolean(int columnIndex)
|
boolean |
getBoolean(String columnName)
|
byte |
getByte(int columnIndex)
|
byte |
getByte(String columnName)
|
byte[] |
getBytes(int columnIndex)
|
byte[] |
getBytes(String columnName)
|
Reader |
getCharacterStream(int columnIndex)
|
Reader |
getCharacterStream(String columnName)
|
Clob |
getClob(int i)
|
Clob |
getClob(String colName)
|
int |
getConcurrency()
|
String |
getCursorName()
|
Date |
getDate(int columnIndex)
|
Date |
getDate(int columnIndex,
Calendar cal)
|
Date |
getDate(String columnName)
|
Date |
getDate(String columnName,
Calendar cal)
|
ResultSet |
getDelegate()
|
double |
getDouble(int columnIndex)
|
double |
getDouble(String columnName)
|
int |
getFetchDirection()
|
int |
getFetchSize()
|
float |
getFloat(int columnIndex)
|
float |
getFloat(String columnName)
|
ResultSet |
getInnermostDelegate()
If my underlying ResultSet is not a
DelegatingResultSet, returns it,
otherwise recursively invokes this method on
my delegate. |
int |
getInt(int columnIndex)
|
int |
getInt(String columnName)
|
long |
getLong(int columnIndex)
|
long |
getLong(String columnName)
|
ResultSetMetaData |
getMetaData()
|
Object |
getObject(int columnIndex)
|
Object |
getObject(int i,
Map map)
|
Object |
getObject(String columnName)
|
Object |
getObject(String colName,
Map map)
|
Ref |
getRef(int i)
|
Ref |
getRef(String colName)
|
int |
getRow()
|
short |
getShort(int columnIndex)
|
short |
getShort(String columnName)
|
Statement |
getStatement()
|
String |
getString(int columnIndex)
|
String |
getString(String columnName)
|
Time |
getTime(int columnIndex)
|
Time |
getTime(int columnIndex,
Calendar cal)
|
Time |
getTime(String columnName)
|
Time |
getTime(String columnName,
Calendar cal)
|
Timestamp |
getTimestamp(int columnIndex)
|
Timestamp |
getTimestamp(int columnIndex,
Calendar cal)
|
Timestamp |
getTimestamp(String columnName)
|
Timestamp |
getTimestamp(String columnName,
Calendar cal)
|
int |
getType()
|
InputStream |
getUnicodeStream(int columnIndex)
Deprecated. |
InputStream |
getUnicodeStream(String columnName)
Deprecated. |
URL |
getURL(int columnIndex)
|
URL |
getURL(String columnName)
|
SQLWarning |
getWarnings()
|
protected void |
handleException(SQLException e)
|
int |
hashCode()
|
void |
insertRow()
|
boolean |
isAfterLast()
|
boolean |
isBeforeFirst()
|
boolean |
isFirst()
|
boolean |
isLast()
|
boolean |
last()
|
void |
moveToCurrentRow()
|
void |
moveToInsertRow()
|
boolean |
next()
|
boolean |
previous()
|
void |
refreshRow()
|
boolean |
relative(int rows)
|
boolean |
rowDeleted()
|
boolean |
rowInserted()
|
boolean |
rowUpdated()
|
void |
setFetchDirection(int direction)
|
void |
setFetchSize(int rows)
|
void |
updateArray(int columnIndex,
Array x)
|
void |
updateArray(String columnName,
Array x)
|
void |
updateAsciiStream(int columnIndex,
InputStream x,
int length)
|
void |
updateAsciiStream(String columnName,
InputStream x,
int length)
|
void |
updateBigDecimal(int columnIndex,
BigDecimal x)
|
void |
updateBigDecimal(String columnName,
BigDecimal x)
|
void |
updateBinaryStream(int columnIndex,
InputStream x,
int length)
|
void |
updateBinaryStream(String columnName,
InputStream x,
int length)
|
void |
updateBlob(int columnIndex,
Blob x)
|
void |
updateBlob(String columnName,
Blob x)
|
void |
updateBoolean(int columnIndex,
boolean x)
|
void |
updateBoolean(String columnName,
boolean x)
|
void |
updateByte(int columnIndex,
byte x)
|
void |
updateByte(String columnName,
byte x)
|
void |
updateBytes(int columnIndex,
byte[] x)
|
void |
updateBytes(String columnName,
byte[] x)
|
void |
updateCharacterStream(int columnIndex,
Reader x,
int length)
|
void |
updateCharacterStream(String columnName,
Reader reader,
int length)
|
void |
updateClob(int columnIndex,
Clob x)
|
void |
updateClob(String columnName,
Clob x)
|
void |
updateDate(int columnIndex,
Date x)
|
void |
updateDate(String columnName,
Date x)
|
void |
updateDouble(int columnIndex,
double x)
|
void |
updateDouble(String columnName,
double x)
|
void |
updateFloat(int columnIndex,
float x)
|
void |
updateFloat(String columnName,
float x)
|
void |
updateInt(int columnIndex,
int x)
|
void |
updateInt(String columnName,
int x)
|
void |
updateLong(int columnIndex,
long x)
|
void |
updateLong(String columnName,
long x)
|
void |
updateNull(int columnIndex)
|
void |
updateNull(String columnName)
|
void |
updateObject(int columnIndex,
Object x)
|
void |
updateObject(int columnIndex,
Object x,
int scale)
|
void |
updateObject(String columnName,
Object x)
|
void |
updateObject(String columnName,
Object x,
int scale)
|
void |
updateRef(int columnIndex,
Ref x)
|
void |
updateRef(String columnName,
Ref x)
|
void |
updateRow()
|
void |
updateShort(int columnIndex,
short x)
|
void |
updateShort(String columnName,
short x)
|
void |
updateString(int columnIndex,
String x)
|
void |
updateString(String columnName,
String x)
|
void |
updateTime(int columnIndex,
Time x)
|
void |
updateTime(String columnName,
Time x)
|
void |
updateTimestamp(int columnIndex,
Timestamp x)
|
void |
updateTimestamp(String columnName,
Timestamp x)
|
boolean |
wasNull()
|
static ResultSet |
wrapResultSet(Statement stmt,
ResultSet rset)
|
| Methods inherited from class org.apache.commons.dbcp.AbandonedTrace |
|---|
addTrace, clearTrace, getConfig, getLastUsed, getTrace, printStackTrace, removeTrace, setLastUsed, setLastUsed, setStackTrace |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public DelegatingResultSet(Statement stmt,
ResultSet res)
stmt - Statement which created this ResultSetres - ResultSet to wrap| Method Detail |
|---|
public static ResultSet wrapResultSet(Statement stmt,
ResultSet rset)
public ResultSet getDelegate()
public boolean equals(Object obj)
equals in class Objectpublic int hashCode()
hashCode in class Objectpublic ResultSet getInnermostDelegate()
ResultSet is not a
DelegatingResultSet, returns it,
otherwise recursively invokes this method on
my delegate.
Hence this method will return the first delegate that is not a DelegatingResultSet, or null when no non-DelegatingResultSet delegate can be found by transversing this chain.
This method is useful when you may have nested
DelegatingResultSets, and you want to make
sure to obtain a "genuine" ResultSet.
public Statement getStatement()
throws SQLException
getStatement in interface ResultSetSQLException
public void close()
throws SQLException
close in interface ResultSetSQLException
protected void handleException(SQLException e)
throws SQLException
SQLException
public boolean next()
throws SQLException
next in interface ResultSetSQLException
public boolean wasNull()
throws SQLException
wasNull in interface ResultSetSQLException
public String getString(int columnIndex)
throws SQLException
getString in interface ResultSetSQLException
public boolean getBoolean(int columnIndex)
throws SQLException
getBoolean in interface ResultSetSQLException
public byte getByte(int columnIndex)
throws SQLException
getByte in interface ResultSetSQLException
public short getShort(int columnIndex)
throws SQLException
getShort in interface ResultSetSQLException
public int getInt(int columnIndex)
throws SQLException
getInt in interface ResultSetSQLException
public long getLong(int columnIndex)
throws SQLException
getLong in interface ResultSetSQLException
public float getFloat(int columnIndex)
throws SQLException
getFloat in interface ResultSetSQLException
public double getDouble(int columnIndex)
throws SQLException
getDouble in interface ResultSetSQLException
public BigDecimal getBigDecimal(int columnIndex,
int scale)
throws SQLException
getBigDecimal in interface ResultSetSQLException
public byte[] getBytes(int columnIndex)
throws SQLException
getBytes in interface ResultSetSQLException
public Date getDate(int columnIndex)
throws SQLException
getDate in interface ResultSetSQLException
public Time getTime(int columnIndex)
throws SQLException
getTime in interface ResultSetSQLException
public Timestamp getTimestamp(int columnIndex)
throws SQLException
getTimestamp in interface ResultSetSQLException
public InputStream getAsciiStream(int columnIndex)
throws SQLException
getAsciiStream in interface ResultSetSQLException
public InputStream getUnicodeStream(int columnIndex)
throws SQLException
getUnicodeStream in interface ResultSetSQLException
public InputStream getBinaryStream(int columnIndex)
throws SQLException
getBinaryStream in interface ResultSetSQLException
public String getString(String columnName)
throws SQLException
getString in interface ResultSetSQLException
public boolean getBoolean(String columnName)
throws SQLException
getBoolean in interface ResultSetSQLException
public byte getByte(String columnName)
throws SQLException
getByte in interface ResultSetSQLException
public short getShort(String columnName)
throws SQLException
getShort in interface ResultSetSQLException
public int getInt(String columnName)
throws SQLException
getInt in interface ResultSetSQLException
public long getLong(String columnName)
throws SQLException
getLong in interface ResultSetSQLException
public float getFloat(String columnName)
throws SQLException
getFloat in interface ResultSetSQLException
public double getDouble(String columnName)
throws SQLException
getDouble in interface ResultSetSQLException
public BigDecimal getBigDecimal(String columnName,
int scale)
throws SQLException
getBigDecimal in interface ResultSetSQLException
public byte[] getBytes(String columnName)
throws SQLException
getBytes in interface ResultSetSQLException
public Date getDate(String columnName)
throws SQLException
getDate in interface ResultSetSQLException
public Time getTime(String columnName)
throws SQLException
getTime in interface ResultSetSQLException
public Timestamp getTimestamp(String columnName)
throws SQLException
getTimestamp in interface ResultSetSQLException
public InputStream getAsciiStream(String columnName)
throws SQLException
getAsciiStream in interface ResultSetSQLException
public InputStream getUnicodeStream(String columnName)
throws SQLException
getUnicodeStream in interface ResultSetSQLException
public InputStream getBinaryStream(String columnName)
throws SQLException
getBinaryStream in interface ResultSetSQLException
public SQLWarning getWarnings()
throws SQLException
getWarnings in interface ResultSetSQLException
public void clearWarnings()
throws SQLException
clearWarnings in interface ResultSetSQLException
public String getCursorName()
throws SQLException
getCursorName in interface ResultSetSQLException
public ResultSetMetaData getMetaData()
throws SQLException
getMetaData in interface ResultSetSQLException
public Object getObject(int columnIndex)
throws SQLException
getObject in interface ResultSetSQLExceptionpublic