public final class ForwardOnlyResultSet extends BaseAxionResultSetDecorator
| Constructor and Description |
|---|
ForwardOnlyResultSet(java.sql.ResultSet rs) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
absolute(int row) |
void |
afterLast() |
void |
beforeFirst() |
boolean |
first() |
int |
getHoldability() |
java.io.Reader |
getNCharacterStream(int arg0) |
java.io.Reader |
getNCharacterStream(java.lang.String arg0) |
java.sql.NClob |
getNClob(int arg0) |
java.sql.NClob |
getNClob(java.lang.String arg0) |
java.lang.String |
getNString(int arg0) |
java.lang.String |
getNString(java.lang.String arg0) |
<T> T |
getObject(int parameterIndex,
java.lang.Class<T> arg0) |
<T> T |
getObject(java.lang.String parameterName,
java.lang.Class<T> arg0) |
java.sql.RowId |
getRowId(int arg0) |
java.sql.RowId |
getRowId(java.lang.String arg0) |
java.sql.SQLXML |
getSQLXML(int arg0) |
java.sql.SQLXML |
getSQLXML(java.lang.String arg0) |
boolean |
isClosed() |
boolean |
isWrapperFor(java.lang.Class<?> arg0) |
boolean |
last() |
boolean |
previous() |
boolean |
relative(int rows) |
void |
setFetchDirection(int direction) |
<T> T |
unwrap(java.lang.Class<T> arg0) |
void |
updateAsciiStream(int arg0,
java.io.InputStream arg1) |
void |
updateAsciiStream(int arg0,
java.io.InputStream arg1,
long arg2) |
void |
updateAsciiStream(java.lang.String arg0,
java.io.InputStream arg1) |
void |
updateAsciiStream(java.lang.String arg0,
java.io.InputStream arg1,
long arg2) |
void |
updateBinaryStream(int arg0,
java.io.InputStream arg1) |
void |
updateBinaryStream(int arg0,
java.io.InputStream arg1,
long arg2) |
void |
updateBinaryStream(java.lang.String arg0,
java.io.InputStream arg1) |
void |
updateBinaryStream(java.lang.String arg0,
java.io.InputStream arg1,
long arg2) |
void |
updateBlob(int arg0,
java.io.InputStream arg1) |
void |
updateBlob(int arg0,
java.io.InputStream arg1,
long arg2) |
void |
updateBlob(java.lang.String arg0,
java.io.InputStream arg1) |
void |
updateBlob(java.lang.String arg0,
java.io.InputStream arg1,
long arg2) |
void |
updateCharacterStream(int arg0,
java.io.Reader arg1) |
void |
updateCharacterStream(int arg0,
java.io.Reader arg1,
long arg2) |
void |
updateCharacterStream(java.lang.String arg0,
java.io.Reader arg1) |
void |
updateCharacterStream(java.lang.String arg0,
java.io.Reader arg1,
long arg2) |
void |
updateClob(int arg0,
java.io.Reader arg1) |
void |
updateClob(int arg0,
java.io.Reader arg1,
long arg2) |
void |
updateClob(java.lang.String arg0,
java.io.Reader arg1) |
void |
updateClob(java.lang.String arg0,
java.io.Reader arg1,
long arg2) |
void |
updateNCharacterStream(int arg0,
java.io.Reader arg1) |
void |
updateNCharacterStream(int arg0,
java.io.Reader arg1,
long arg2) |
void |
updateNCharacterStream(java.lang.String arg0,
java.io.Reader arg1) |
void |
updateNCharacterStream(java.lang.String arg0,
java.io.Reader arg1,
long arg2) |
void |
updateNClob(int arg0,
java.sql.NClob arg1) |
void |
updateNClob(int arg0,
java.io.Reader arg1) |
void |
updateNClob(int arg0,
java.io.Reader arg1,
long arg2) |
void |
updateNClob(java.lang.String arg0,
java.sql.NClob arg1) |
void |
updateNClob(java.lang.String arg0,
java.io.Reader arg1) |
void |
updateNClob(java.lang.String arg0,
java.io.Reader arg1,
long arg2) |
void |
updateNString(int arg0,
java.lang.String arg1) |
void |
updateNString(java.lang.String arg0,
java.lang.String arg1) |
void |
updateRowId(int arg0,
java.sql.RowId arg1) |
void |
updateRowId(java.lang.String arg0,
java.sql.RowId arg1) |
void |
updateSQLXML(int arg0,
java.sql.SQLXML arg1) |
void |
updateSQLXML(java.lang.String arg0,
java.sql.SQLXML arg1) |
cancelRowUpdates, clearWarnings, close, deleteRow, findColumn, getArray, getArray, getAsciiStream, getAsciiStream, getBigDecimal, getBigDecimal, getBigDecimal, getBigDecimal, getBinaryStream, getBinaryStream, getBlob, getBlob, getBoolean, getBoolean, getByte, getByte, getBytes, getBytes, getCharacterStream, getCharacterStream, getClob, getClob, getConcurrency, getCursorName, getDate, getDate, getDate, getDate, getDouble, getDouble, getFetchDirection, getFetchSize, getFloat, getFloat, getInt, getInt, getLong, getLong, getMetaData, getObject, getObject, getObject, getObject, getRef, getRef, getRow, getShort, getShort, getStatement, getString, getString, getTime, getTime, getTime, getTime, getTimestamp, getTimestamp, getTimestamp, getTimestamp, getType, getUnicodeStream, getUnicodeStream, getURL, getURL, getWarnings, insertRow, isAfterLast, isBeforeFirst, isFirst, isLast, moveToCurrentRow, moveToInsertRow, next, refreshRow, rowDeleted, rowInserted, rowUpdated, setFetchSize, updateArray, updateArray, updateAsciiStream, updateAsciiStream, updateBigDecimal, updateBigDecimal, updateBinaryStream, updateBinaryStream, updateBlob, updateBlob, updateBoolean, updateBoolean, updateByte, updateByte, updateBytes, updateBytes, updateCharacterStream, updateCharacterStream, updateClob, updateClob, updateDate, updateDate, updateDouble, updateDouble, updateFloat, updateFloat, updateInt, updateInt, updateLong, updateLong, updateNull, updateNull, updateObject, updateObject, updateObject, updateObject, updateRef, updateRef, updateRow, updateShort, updateShort, updateString, updateString, updateTime, updateTime, updateTimestamp, updateTimestamp, wasNullpublic ForwardOnlyResultSet(java.sql.ResultSet rs)
rs - ResultSet that needs to be decoratedpublic boolean absolute(int row)
throws java.sql.SQLException
absolute in interface java.sql.ResultSetabsolute in class BaseAxionResultSetDecoratorjava.sql.SQLExceptionpublic void afterLast()
throws java.sql.SQLException
afterLast in interface java.sql.ResultSetafterLast in class BaseAxionResultSetDecoratorjava.sql.SQLExceptionpublic void beforeFirst()
throws java.sql.SQLException
beforeFirst in interface java.sql.ResultSetbeforeFirst in class BaseAxionResultSetDecoratorjava.sql.SQLExceptionpublic boolean first()
throws java.sql.SQLException
first in interface java.sql.ResultSetfirst in class BaseAxionResultSetDecoratorjava.sql.SQLExceptionpublic boolean last()
throws java.sql.SQLException
last in interface java.sql.ResultSetlast in class BaseAxionResultSetDecoratorjava.sql.SQLExceptionpublic boolean previous()
throws java.sql.SQLException
previous in interface java.sql.ResultSetprevious in class BaseAxionResultSetDecoratorjava.sql.SQLExceptionpublic boolean relative(int rows)
throws java.sql.SQLException
relative in interface java.sql.ResultSetrelative in class BaseAxionResultSetDecoratorjava.sql.SQLExceptionpublic void setFetchDirection(int direction)
throws java.sql.SQLException
setFetchDirection in interface java.sql.ResultSetsetFetchDirection in class BaseAxionResultSetDecoratorjava.sql.SQLExceptionpublic int getHoldability()
throws java.sql.SQLException
java.sql.SQLExceptionpublic java.io.Reader getNCharacterStream(int arg0)
throws java.sql.SQLException
java.sql.SQLExceptionpublic java.io.Reader getNCharacterStream(java.lang.String arg0)
throws java.sql.SQLException
java.sql.SQLExceptionpublic java.sql.NClob getNClob(int arg0)
throws java.sql.SQLException
java.sql.SQLExceptionpublic java.sql.NClob getNClob(java.lang.String arg0)
throws java.sql.SQLException
java.sql.SQLExceptionpublic java.lang.String getNString(int arg0)
throws java.sql.SQLException
java.sql.SQLExceptionpublic java.lang.String getNString(java.lang.String arg0)
throws java.sql.SQLException
java.sql.SQLExceptionpublic java.sql.RowId getRowId(int arg0)
throws java.sql.SQLException
java.sql.SQLExceptionpublic java.sql.RowId getRowId(java.lang.String arg0)
throws java.sql.SQLException
java.sql.SQLExceptionpublic java.sql.SQLXML getSQLXML(int arg0)
throws java.sql.SQLException
java.sql.SQLExceptionpublic java.sql.SQLXML getSQLXML(java.lang.String arg0)
throws java.sql.SQLException
java.sql.SQLExceptionpublic boolean isClosed()
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateAsciiStream(int arg0,
java.io.InputStream arg1)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateAsciiStream(java.lang.String arg0,
java.io.InputStream arg1)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateAsciiStream(int arg0,
java.io.InputStream arg1,
long arg2)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateAsciiStream(java.lang.String arg0,
java.io.InputStream arg1,
long arg2)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateBinaryStream(int arg0,
java.io.InputStream arg1)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateBinaryStream(java.lang.String arg0,
java.io.InputStream arg1)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateBinaryStream(int arg0,
java.io.InputStream arg1,
long arg2)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateBinaryStream(java.lang.String arg0,
java.io.InputStream arg1,
long arg2)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateBlob(int arg0,
java.io.InputStream arg1)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateBlob(java.lang.String arg0,
java.io.InputStream arg1)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateBlob(int arg0,
java.io.InputStream arg1,
long arg2)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateBlob(java.lang.String arg0,
java.io.InputStream arg1,
long arg2)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateCharacterStream(int arg0,
java.io.Reader arg1)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateCharacterStream(java.lang.String arg0,
java.io.Reader arg1)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateCharacterStream(int arg0,
java.io.Reader arg1,
long arg2)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateCharacterStream(java.lang.String arg0,
java.io.Reader arg1,
long arg2)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateClob(int arg0,
java.io.Reader arg1)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateClob(java.lang.String arg0,
java.io.Reader arg1)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateClob(int arg0,
java.io.Reader arg1,
long arg2)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateClob(java.lang.String arg0,
java.io.Reader arg1,
long arg2)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateNCharacterStream(int arg0,
java.io.Reader arg1)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateNCharacterStream(java.lang.String arg0,
java.io.Reader arg1)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateNCharacterStream(int arg0,
java.io.Reader arg1,
long arg2)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateNCharacterStream(java.lang.String arg0,
java.io.Reader arg1,
long arg2)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateNClob(int arg0,
java.sql.NClob arg1)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateNClob(java.lang.String arg0,
java.sql.NClob arg1)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateNClob(int arg0,
java.io.Reader arg1)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateNClob(java.lang.String arg0,
java.io.Reader arg1)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateNClob(int arg0,
java.io.Reader arg1,
long arg2)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateNClob(java.lang.String arg0,
java.io.Reader arg1,
long arg2)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateNString(int arg0,
java.lang.String arg1)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateNString(java.lang.String arg0,
java.lang.String arg1)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateRowId(int arg0,
java.sql.RowId arg1)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateRowId(java.lang.String arg0,
java.sql.RowId arg1)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateSQLXML(int arg0,
java.sql.SQLXML arg1)
throws java.sql.SQLException
java.sql.SQLExceptionpublic void updateSQLXML(java.lang.String arg0,
java.sql.SQLXML arg1)
throws java.sql.SQLException
java.sql.SQLExceptionpublic boolean isWrapperFor(java.lang.Class<?> arg0)
throws java.sql.SQLException
java.sql.SQLExceptionpublic <T> T unwrap(java.lang.Class<T> arg0)
throws java.sql.SQLException
java.sql.SQLExceptionpublic <T> T getObject(int parameterIndex,
java.lang.Class<T> arg0)
throws java.sql.SQLException
java.sql.SQLExceptionpublic <T> T getObject(java.lang.String parameterName,
java.lang.Class<T> arg0)
throws java.sql.SQLException
java.sql.SQLException