|
[Deprecated API] | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | CURRENT API | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Object | +--com.interface21.jdbc.core.ReadOnlyResultSet
A class that implements java.sql.ResultSet which is used in the JdbcTemplateclass. This is the ResultSet instance which is passed as a parameter to the extract() callback method of the ManualExtractionSqlQueryWithParameters and ManualExtractionSqlQuery classes. The objective is to be able to control that the user does not break the extraction mechanism by calling methods that disturb for instance the positioning of the cursor, such as next() or first(), or any other setter method. If such a call is made anyway, an InvalidDataAccessApiUsageException exception is thrown.
Overall, the class acts as a proxy to the actual ResultSet and filters out faulty calls to unauthorised methods behind the scenes. For that very reason, the wrapped methods are not documented here. Please refer to the official ResultSet Javadoc for more information.
| Fields inherited from interface java.sql.ResultSet |
CONCUR_READ_ONLY, CONCUR_UPDATABLE, FETCH_FORWARD, FETCH_REVERSE, FETCH_UNKNOWN, TYPE_FORWARD_ONLY, TYPE_SCROLL_INSENSITIVE, TYPE_SCROLL_SENSITIVE |
| Constructor Summary | |
ReadOnlyResultSet(java.sql.ResultSet rs)
Constructor. |
|
| Method Summary | |
boolean |
absolute(int row)
Not authorised. |
void |
afterLast()
Not authorised. |
void |
beforeFirst()
Not authorised. |
void |
cancelRowUpdates()
Not authorised. |
void |
clearWarnings()
Not authorised. |
void |
close()
Not authorised. |
void |
deleteRow()
Not authorised. |
int |
findColumn(java.lang.String columnName)
Authorised. |
boolean |
first()
Not authorised. |
java.sql.Array |
getArray(int columnIndex)
Authorised. |
java.sql.Array |
getArray(java.lang.String columnName)
Authorised. |
java.io.InputStream |
getAsciiStream(int columnIndex)
Authorised. |
java.io.InputStream |
getAsciiStream(java.lang.String columnName)
Authorised. |
java.math.BigDecimal |
getBigDecimal(int columnIndex)
Authorised. |
java.math.BigDecimal |
getBigDecimal(int columnIndex,
int scale)
Authorised. |
java.math.BigDecimal |
getBigDecimal(java.lang.String columnName)
Authorised. |
java.math.BigDecimal |
getBigDecimal(java.lang.String columnName,
int scale)
Authorised. |
java.io.InputStream |
getBinaryStream(int columnIndex)
Authorised. |
java.io.InputStream |
getBinaryStream(java.lang.String columnName)
Authorised. |
java.sql.Blob |
getBlob(int columnIndex)
Authorised. |
java.sql.Blob |
getBlob(java.lang.String columnName)
Authorised. |
boolean |
getBoolean(int columnIndex)
Authorised. |
boolean |
getBoolean(java.lang.String columnName)
Authorised. |
byte |
getByte(int columnIndex)
Authorised. |
byte |
getByte(java.lang.String columnName)
Authorised. |
byte[] |
getBytes(int columnIndex)
Authorised. |
byte[] |
getBytes(java.lang.String columnName)
Authorised. |
java.io.Reader |
getCharacterStream(int columnIndex)
Authorised. |
java.io.Reader |
getCharacterStream(java.lang.String columnName)
Authorised. |
java.sql.Clob |
getClob(int columnIndex)
Authorised. |
java.sql.Clob |
getClob(java.lang.String columnName)
Authorised. |
int |
getConcurrency()
Authorised. |
java.lang.String |
getCursorName()
Not authorised. |
java.sql.Date |
getDate(int columnIndex)
Authorised. |
java.sql.Date |
getDate(int columnIndex,
java.util.Calendar cal)
Authorised. |
java.sql.Date |
getDate(java.lang.String columnName)
Authorised. |
java.sql.Date |
getDate(java.lang.String columnName,
java.util.Calendar cal)
Authorised. |
double |
getDouble(int columnIndex)
Authorised. |
double |
getDouble(java.lang.String columnName)
Authorised. |
int |
getFetchDirection()
Authorised. |
int |
getFetchSize()
Authorised. |
float |
getFloat(int columnIndex)
Authorised. |
float |
getFloat(java.lang.String columnName)
Authorised. |
int |
getInt(int columnIndex)
Authorised. |
int |
getInt(java.lang.String columnName)
Authorised. |
long |
getLong(int columnIndex)
|
long |
getLong(java.lang.String columnName)
Authorised. |
java.sql.ResultSetMetaData |
getMetaData()
Authorised. |
java.lang.Object |
getObject(int columnIndex)
Authorised. |
java.lang.Object |
getObject(int columnIndex,
java.util.Map map)
Authorised. |
java.lang.Object |
getObject(java.lang.String columnName)
Authorised. |
java.lang.Object |
getObject(java.lang.String columnName,
java.util.Map map)
Authorised. |
java.sql.Ref |
getRef(int columnIndex)
Authorised. |
java.sql.Ref |
getRef(java.lang.String columnName)
Authorised. |
int |
getRow()
Authorised. |
short |
getShort(int columnIndex)
Authorised. |
short |
getShort(java.lang.String columnName)
Authorised. |
java.sql.Statement |
getStatement()
Authorised. |
java.lang.String |
getString(int columnIndex)
Authorised. |
java.lang.String |
getString(java.lang.String columnName)
Authorised. |
java.sql.Time |
getTime(int columnIndex)
Authorised. |
java.sql.Time |
getTime(int columnIndex,
java.util.Calendar cal)
Authorised. |
java.sql.Time |
getTime(java.lang.String columnName)
Authorised. |
java.sql.Time |
getTime(java.lang.String columnName,
java.util.Calendar cal)
Authorised. |
java.sql.Timestamp |
getTimestamp(int columnIndex)
Authorised. |
java.sql.Timestamp |
getTimestamp(int columnIndex,
java.util.Calendar cal)
Authorised. |
java.sql.Timestamp |
getTimestamp(java.lang.String columnName)
Authorised. |
java.sql.Timestamp |
getTimestamp(java.lang.String columnName,
java.util.Calendar cal)
Authorised. |
int |
getType()
Authorised. |
java.io.InputStream |
getUnicodeStream(int columnIndex)
Authorised. |
java.io.InputStream |
getUnicodeStream(java.lang.String columnName)
Authorised. |
java.net.URL |
getURL(int columnIndex)
|
java.net.URL |
getURL(java.lang.String columnName)
|
java.sql.SQLWarning |
getWarnings()
Not authorised. |
void |
insertRow()
Not authorised. |
boolean |
isAfterLast()
Authorised. |
boolean |
isBeforeFirst()
Authorised. |
boolean |
isFirst()
Authorised. |
boolean |
isLast()
Authorised. |
boolean |
last()
Not authorised. |
void |
moveToCurrentRow()
Not authorised. |
void |
moveToInsertRow()
Not authorised. |
boolean |
next()
Not authorised. |
boolean |
previous()
Not authorised. |
void |
refreshRow()
Not authorised. |
boolean |
relative(int rows)
Not authorised. |
boolean |
rowDeleted()
Authorised. |
boolean |
rowInserted()
Authorised. |
boolean |
rowUpdated()
Authorised. |
void |
setFetchDirection(int direction)
Not authorised. |
void |
setFetchSize(int rows)
Not authorised. |
void |
updateArray(int columnIndex,
java.sql.Array x)
|
void |
updateArray(java.lang.String columnName,
java.sql.Array x)
|
void |
updateAsciiStream(int columnIndex,
java.io.InputStream x,
int length)
Not authorised. |
void |
updateAsciiStream(java.lang.String columnName,
java.io.InputStream x,
int length)
Not authorised. |
void |
updateBigDecimal(int columnIndex,
java.math.BigDecimal x)
Not authorised. |
void |
updateBigDecimal(java.lang.String columnName,
java.math.BigDecimal x)
Not authorised. |
void |
updateBinaryStream(int columnIndex,
java.io.InputStream x,
int length)
Not authorised. |
void |
updateBinaryStream(java.lang.String columnName,
java.io.InputStream x,
int length)
Not authorised. |
void |
updateBlob(int columnIndex,
java.sql.Blob x)
|
void |
updateBlob(java.lang.String columnName,
java.sql.Blob x)
|
void |
updateBoolean(int columnIndex,
boolean x)
Not authorised. |
void |
updateBoolean(java.lang.String columnName,
boolean x)
Not authorised. |
void |
updateByte(int columnIndex,
byte x)
Not authorised. |
void |
updateByte(java.lang.String columnName,
byte x)
Not authorised. |
void |
updateBytes(int columnIndex,
byte[] x)
Not authorised. |
void |
updateBytes(java.lang.String columnName,
byte[] x)
Not authorised. |
void |
updateCharacterStream(int columnIndex,
java.io.Reader x,
int length)
Not authorised. |
void |
updateCharacterStream(java.lang.String columnName,
java.io.Reader reader,
int length)
Not authorised. |
void |
updateClob(int columnIndex,
java.sql.Clob x)
|
void |
updateClob(java.lang.String columnName,
java.sql.Clob x)
|
void |
updateDate(int columnIndex,
java.sql.Date x)
Not authorised. |
void |
updateDate(java.lang.String columnName,
java.sql.Date x)
Not authorised. |
void |
updateDouble(int columnIndex,
double x)
Not authorised. |
void |
updateDouble(java.lang.String columnName,
double x)
Not authorised. |
void |
updateFloat(int columnIndex,
float x)
Not authorised. |
void |
updateFloat(java.lang.String columnName,
float x)
Not authorised. |
void |
updateInt(int columnIndex,
int x)
Not authorised. |
void |
updateInt(java.lang.String columnName,
int x)
Not authorised. |
void |
updateLong(int columnIndex,
long x)
Not authorised. |
void |
updateLong(java.lang.String columnName,
long x)
Not authorised. |
void |
updateNull(int columnIndex)
Not authorised. |
void |
updateNull(java.lang.String columnName)
Not authorised. |
void |
updateObject(int columnIndex,
java.lang.Object x)
Not authorised. |
void |
updateObject(int columnIndex,
java.lang.Object x,
int scale)
Not authorised. |
void |
updateObject(java.lang.String columnName,
java.lang.Object x)
Not authorised. |
void |
updateObject(java.lang.String columnName,
java.lang.Object x,
int scale)
Not authorised. |
void |
updateRef(int columnIndex,
java.sql.Ref x)
|
void |
updateRef(java.lang.String columnName,
java.sql.Ref x)
|
void |
updateRow()
Not authorised. |
void |
updateShort(int columnIndex,
short x)
Not authorised. |
void |
updateShort(java.lang.String columnName,
short x)
Not authorised. |
void |
updateString(int columnIndex,
java.lang.String x)
Not authorised. |
void |
updateString(java.lang.String columnName,
java.lang.String x)
Not authorised. |
void |
updateTime(int columnIndex,
java.sql.Time x)
Not authorised. |
void |
updateTime(java.lang.String columnName,
java.sql.Time x)
Not authorised. |
void |
updateTimestamp(int columnIndex,
java.sql.Timestamp x)
Not authorised. |
void |
updateTimestamp(java.lang.String columnName,
java.sql.Timestamp x)
Not authorised. |
boolean |
wasNull()
Authorised. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public ReadOnlyResultSet(java.sql.ResultSet rs)
rs - The wrapped ResultSet instanceInvalidParameterException - when the wrapped ResultSet instance
is null.| Method Detail |
public boolean next()
throws java.sql.SQLException
next in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.next()
public void close()
throws java.sql.SQLException
close in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.close()
public boolean wasNull()
throws java.sql.SQLException
wasNull in interface java.sql.ResultSetResultSet.wasNull()
public java.lang.String getString(int columnIndex)
throws java.sql.SQLException
getString in interface java.sql.ResultSetResultSet.getString(int)
public boolean getBoolean(int columnIndex)
throws java.sql.SQLException
getBoolean in interface java.sql.ResultSetResultSet.getBoolean(int)
public byte getByte(int columnIndex)
throws java.sql.SQLException
getByte in interface java.sql.ResultSetResultSet.getByte(int)
public short getShort(int columnIndex)
throws java.sql.SQLException
getShort in interface java.sql.ResultSetResultSet.getShort(int)
public int getInt(int columnIndex)
throws java.sql.SQLException
getInt in interface java.sql.ResultSetResultSet.getInt(int)
public long getLong(int columnIndex)
throws java.sql.SQLException
getLong in interface java.sql.ResultSetResultSet.getLong(int)
public float getFloat(int columnIndex)
throws java.sql.SQLException
getFloat in interface java.sql.ResultSetResultSet.getFloat(int)
public double getDouble(int columnIndex)
throws java.sql.SQLException
getDouble in interface java.sql.ResultSetResultSet.getDouble(int)
public java.math.BigDecimal getBigDecimal(int columnIndex,
int scale)
throws java.sql.SQLException
getBigDecimal in interface java.sql.ResultSetResultSet.getBigDecimal(int, int)
public byte[] getBytes(int columnIndex)
throws java.sql.SQLException
getBytes in interface java.sql.ResultSetResultSet.getBytes(int)
public java.sql.Date getDate(int columnIndex)
throws java.sql.SQLException
getDate in interface java.sql.ResultSetResultSet.getDate(int)
public java.sql.Time getTime(int columnIndex)
throws java.sql.SQLException
getTime in interface java.sql.ResultSetResultSet.getTime(int)
public java.sql.Timestamp getTimestamp(int columnIndex)
throws java.sql.SQLException
getTimestamp in interface java.sql.ResultSetResultSet.getTimestamp(int)
public java.io.InputStream getAsciiStream(int columnIndex)
throws java.sql.SQLException
getAsciiStream in interface java.sql.ResultSetResultSet.getAsciiStream(int)
public java.io.InputStream getUnicodeStream(int columnIndex)
throws java.sql.SQLException
getUnicodeStream in interface java.sql.ResultSetResultSet.getUnicodeStream(int)
public java.io.InputStream getBinaryStream(int columnIndex)
throws java.sql.SQLException
getBinaryStream in interface java.sql.ResultSetResultSet.getBinaryStream(int)
public java.lang.String getString(java.lang.String columnName)
throws java.sql.SQLException
getString in interface java.sql.ResultSetResultSet.getString(int)
public boolean getBoolean(java.lang.String columnName)
throws java.sql.SQLException
getBoolean in interface java.sql.ResultSetResultSet.getBoolean(int)
public byte getByte(java.lang.String columnName)
throws java.sql.SQLException
getByte in interface java.sql.ResultSetResultSet.getByte(int)
public short getShort(java.lang.String columnName)
throws java.sql.SQLException
getShort in interface java.sql.ResultSetResultSet.getShort(int)
public int getInt(java.lang.String columnName)
throws java.sql.SQLException
getInt in interface java.sql.ResultSetResultSet.getInt(int)
public long getLong(java.lang.String columnName)
throws java.sql.SQLException
getLong in interface java.sql.ResultSetResultSet.getLong(String)
public float getFloat(java.lang.String columnName)
throws java.sql.SQLException
getFloat in interface java.sql.ResultSetResultSet.getFloat(String)
public double getDouble(java.lang.String columnName)
throws java.sql.SQLException
getDouble in interface java.sql.ResultSetResultSet.getDouble(String)
public java.math.BigDecimal getBigDecimal(java.lang.String columnName,
int scale)
throws java.sql.SQLException
getBigDecimal in interface java.sql.ResultSetResultSet.getBigDecimal(String, int)
public byte[] getBytes(java.lang.String columnName)
throws java.sql.SQLException
getBytes in interface java.sql.ResultSetResultSet.getBytes(String)
public java.sql.Date getDate(java.lang.String columnName)
throws java.sql.SQLException
getDate in interface java.sql.ResultSetResultSet.getDate(String)
public java.sql.Time getTime(java.lang.String columnName)
throws java.sql.SQLException
getTime in interface java.sql.ResultSetResultSet.getTime(String)
public java.sql.Timestamp getTimestamp(java.lang.String columnName)
throws java.sql.SQLException
getTimestamp in interface java.sql.ResultSetResultSet.getTimestamp(String)
public java.io.InputStream getAsciiStream(java.lang.String columnName)
throws java.sql.SQLException
getAsciiStream in interface java.sql.ResultSetResultSet.getAsciiStream(String)
public java.io.InputStream getUnicodeStream(java.lang.String columnName)
throws java.sql.SQLException
getUnicodeStream in interface java.sql.ResultSetResultSet.getUnicodeStream(String)
public java.io.InputStream getBinaryStream(java.lang.String columnName)
throws java.sql.SQLException
getBinaryStream in interface java.sql.ResultSetResultSet.getBinaryStream(String)
public java.sql.SQLWarning getWarnings()
throws java.sql.SQLException
getWarnings in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.getWarnings()
public void clearWarnings()
throws java.sql.SQLException
clearWarnings in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.clearWarnings()
public java.lang.String getCursorName()
throws java.sql.SQLException
getCursorName in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.getCursorName()
public java.sql.ResultSetMetaData getMetaData()
throws java.sql.SQLException
getMetaData in interface java.sql.ResultSetResultSet.getMetaData()
public java.lang.Object getObject(int columnIndex)
throws java.sql.SQLException
getObject in interface java.sql.ResultSetResultSet.getObject(int)
public java.lang.Object getObject(java.lang.String columnName)
throws java.sql.SQLException
getObject in interface java.sql.ResultSetResultSet.getObject(String)
public int findColumn(java.lang.String columnName)
throws java.sql.SQLException
findColumn in interface java.sql.ResultSetResultSet.findColumn(String)
public java.io.Reader getCharacterStream(int columnIndex)
throws java.sql.SQLException
getCharacterStream in interface java.sql.ResultSetResultSet.getCharacterStream(int)
public java.io.Reader getCharacterStream(java.lang.String columnName)
throws java.sql.SQLException
getCharacterStream in interface java.sql.ResultSetResultSet.getCharacterStream(String)
public java.math.BigDecimal getBigDecimal(int columnIndex)
throws java.sql.SQLException
getBigDecimal in interface java.sql.ResultSetResultSet.getBigDecimal(int)
public java.math.BigDecimal getBigDecimal(java.lang.String columnName)
throws java.sql.SQLException
getBigDecimal in interface java.sql.ResultSetResultSet.getBigDecimal(String)
public boolean isBeforeFirst()
throws java.sql.SQLException
isBeforeFirst in interface java.sql.ResultSetResultSet.isBeforeFirst()
public boolean isAfterLast()
throws java.sql.SQLException
isAfterLast in interface java.sql.ResultSetResultSet.isAfterLast()
public boolean isFirst()
throws java.sql.SQLException
isFirst in interface java.sql.ResultSetResultSet.isFirst()
public boolean isLast()
throws java.sql.SQLException
isLast in interface java.sql.ResultSetResultSet.isLast()
public void beforeFirst()
throws java.sql.SQLException
beforeFirst in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.beforeFirst()
public void afterLast()
throws java.sql.SQLException
afterLast in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.afterLast()
public boolean first()
throws java.sql.SQLException
first in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.first()
public boolean last()
throws java.sql.SQLException
last in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.last()
public int getRow()
throws java.sql.SQLException
getRow in interface java.sql.ResultSetResultSet.getRow()
public boolean absolute(int row)
throws java.sql.SQLException
absolute in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.absolute(int)
public boolean relative(int rows)
throws java.sql.SQLException
relative in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.relative(int)
public boolean previous()
throws java.sql.SQLException
previous in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.previous()
public void setFetchDirection(int direction)
throws java.sql.SQLException
setFetchDirection in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.setFetchDirection(int)
public int getFetchDirection()
throws java.sql.SQLException
getFetchDirection in interface java.sql.ResultSetResultSet.getFetchDirection()
public void setFetchSize(int rows)
throws java.sql.SQLException
setFetchSize in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.setFetchSize(int)
public int getFetchSize()
throws java.sql.SQLException
getFetchSize in interface java.sql.ResultSetResultSet.getFetchSize()
public int getType()
throws java.sql.SQLException
getType in interface java.sql.ResultSetResultSet.getType()
public int getConcurrency()
throws java.sql.SQLException
getConcurrency in interface java.sql.ResultSetResultSet.getConcurrency()
public boolean rowUpdated()
throws java.sql.SQLException
rowUpdated in interface java.sql.ResultSetResultSet.rowUpdated()
public boolean rowInserted()
throws java.sql.SQLException
rowInserted in interface java.sql.ResultSetResultSet.rowInserted()
public boolean rowDeleted()
throws java.sql.SQLException
rowDeleted in interface java.sql.ResultSetResultSet.rowDeleted()
public void updateNull(int columnIndex)
throws java.sql.SQLException
updateNull in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateNull(int)
public void updateBoolean(int columnIndex,
boolean x)
throws java.sql.SQLException
updateBoolean in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateBoolean(int, boolean)
public void updateByte(int columnIndex,
byte x)
throws java.sql.SQLException
updateByte in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateByte(int, byte)
public void updateShort(int columnIndex,
short x)
throws java.sql.SQLException
updateShort in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateShort(int, short)
public void updateInt(int columnIndex,
int x)
throws java.sql.SQLException
updateInt in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateInt(int, int)
public void updateLong(int columnIndex,
long x)
throws java.sql.SQLException
updateLong in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateLong(int, long)
public void updateFloat(int columnIndex,
float x)
throws java.sql.SQLException
updateFloat in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateFloat(int, float)
public void updateDouble(int columnIndex,
double x)
throws java.sql.SQLException
updateDouble in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateDouble(int, double)
public void updateBigDecimal(int columnIndex,
java.math.BigDecimal x)
throws java.sql.SQLException
updateBigDecimal in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateBigDecimal(int, BigDecimal)
public void updateString(int columnIndex,
java.lang.String x)
throws java.sql.SQLException
updateString in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateString(int, String)
public void updateBytes(int columnIndex,
byte[] x)
throws java.sql.SQLException
updateBytes in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateBytes(int, byte[])
public void updateDate(int columnIndex,
java.sql.Date x)
throws java.sql.SQLException
updateDate in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateDate(int, java.sql.Date)
public void updateTime(int columnIndex,
java.sql.Time x)
throws java.sql.SQLException
updateTime in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateTime(int, java.sql.Time)
public void updateTimestamp(int columnIndex,
java.sql.Timestamp x)
throws java.sql.SQLException
updateTimestamp in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateTimestamp(int, java.sql.Timestamp)
public void updateAsciiStream(int columnIndex,
java.io.InputStream x,
int length)
throws java.sql.SQLException
updateAsciiStream in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateAsciiStream(int, java.io.InputStream, int)
public void updateBinaryStream(int columnIndex,
java.io.InputStream x,
int length)
throws java.sql.SQLException
updateBinaryStream in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - java.sql.ResultSet#(int, java.io.InputStream, int)
public void updateCharacterStream(int columnIndex,
java.io.Reader x,
int length)
throws java.sql.SQLException
updateCharacterStream in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateCharacterStream(int, java.io.Reader, int)
public void updateObject(int columnIndex,
java.lang.Object x,
int scale)
throws java.sql.SQLException
updateObject in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateObject(int, Object, int)
public void updateObject(int columnIndex,
java.lang.Object x)
throws java.sql.SQLException
updateObject in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateObject(int, Object)
public void updateNull(java.lang.String columnName)
throws java.sql.SQLException
updateNull in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateNull(String)
public void updateBoolean(java.lang.String columnName,
boolean x)
throws java.sql.SQLException
updateBoolean in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateBoolean(String, boolean)
public void updateByte(java.lang.String columnName,
byte x)
throws java.sql.SQLException
updateByte in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateByte(String, byte)
public void updateShort(java.lang.String columnName,
short x)
throws java.sql.SQLException
updateShort in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateShort(String, short)
public void updateInt(java.lang.String columnName,
int x)
throws java.sql.SQLException
updateInt in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateInt(String, int)
public void updateLong(java.lang.String columnName,
long x)
throws java.sql.SQLException
updateLong in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateLong(String, long)
public void updateFloat(java.lang.String columnName,
float x)
throws java.sql.SQLException
updateFloat in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateFloat(String, float)
public void updateDouble(java.lang.String columnName,
double x)
throws java.sql.SQLException
updateDouble in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateDouble(String, double)
public void updateBigDecimal(java.lang.String columnName,
java.math.BigDecimal x)
throws java.sql.SQLException
updateBigDecimal in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateBigDecimal(String, BigDecimal)
public void updateString(java.lang.String columnName,
java.lang.String x)
throws java.sql.SQLException
updateString in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateString(String, String)
public void updateBytes(java.lang.String columnName,
byte[] x)
throws java.sql.SQLException
updateBytes in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateBytes(String, byte[])
public void updateDate(java.lang.String columnName,
java.sql.Date x)
throws java.sql.SQLException
updateDate in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateDate(String, java.sql.Date)
public void updateTime(java.lang.String columnName,
java.sql.Time x)
throws java.sql.SQLException
updateTime in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateTime(String, java.sql.Time)
public void updateTimestamp(java.lang.String columnName,
java.sql.Timestamp x)
throws java.sql.SQLException
updateTimestamp in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateTimestamp(String, java.sql.Timestamp)
public void updateAsciiStream(java.lang.String columnName,
java.io.InputStream x,
int length)
throws java.sql.SQLException
updateAsciiStream in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateAsciiStream(String, java.io.InputStream, int)
public void updateBinaryStream(java.lang.String columnName,
java.io.InputStream x,
int length)
throws java.sql.SQLException
updateBinaryStream in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateBinaryStream(String, java.io.InputStream, int)
public void updateCharacterStream(java.lang.String columnName,
java.io.Reader reader,
int length)
throws java.sql.SQLException
updateCharacterStream in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateCharacterStream(String, java.io.Reader, int)
public void updateObject(java.lang.String columnName,
java.lang.Object x,
int scale)
throws java.sql.SQLException
updateObject in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateObject(String, Object, int)
public void updateObject(java.lang.String columnName,
java.lang.Object x)
throws java.sql.SQLException
updateObject in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateObject(String, Object)
public void insertRow()
throws java.sql.SQLException
insertRow in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.insertRow()
public void updateRow()
throws java.sql.SQLException
updateRow in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.updateRow()
public void deleteRow()
throws java.sql.SQLException
deleteRow in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.deleteRow()
public void refreshRow()
throws java.sql.SQLException
refreshRow in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.refreshRow()
public void cancelRowUpdates()
throws java.sql.SQLException
cancelRowUpdates in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.cancelRowUpdates()
public void moveToInsertRow()
throws java.sql.SQLException
moveToInsertRow in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.moveToInsertRow()
public void moveToCurrentRow()
throws java.sql.SQLException
moveToCurrentRow in interface java.sql.ResultSetInvalidResultSetMethodInvocationException - ResultSet.moveToCurrentRow()
public java.sql.Statement getStatement()
throws java.sql.SQLException
getStatement in interface java.sql.ResultSetResultSet.getStatement()
public java.lang.Object getObject(int columnIndex,
java.util.Map map)
throws java.sql.SQLException
getObject in interface java.sql.ResultSetResultSet.getObject(int, java.util.Map)
public java.sql.Ref getRef(int columnIndex)
throws java.sql.SQLException
getRef in interface java.sql.ResultSetResultSet.getRef(int)
public java.sql.Blob getBlob(int columnIndex)
throws java.sql.SQLException
getBlob in interface java.sql.ResultSetResultSet.getBlob(int)
public java.sql.Clob getClob(int columnIndex)
throws java.sql.SQLException
getClob in interface java.sql.ResultSetResultSet.getClob(int)
public java.sql.Array getArray(int columnIndex)
throws java.sql.SQLException
getArray in interface java.sql.ResultSetResultSet.getArray(int)
public java.lang.Object getObject(java.lang.String columnName,
java.util.Map map)
throws java.sql.SQLException
getObject in interface java.sql.ResultSetResultSet.getObject(String, java.util.Map)
public java.sql.Ref getRef(java.lang.String columnName)
throws java.sql.SQLException
getRef in interface java.sql.ResultSetResultSet.getRef(String)
public java.sql.Blob getBlob(java.lang.String columnName)
throws java.sql.SQLException
getBlob in interface java.sql.ResultSetResultSet.getBlob(String)
public java.sql.Clob getClob(java.lang.String columnName)
throws java.sql.SQLException
getClob in interface java.sql.ResultSetResultSet.getClob(String)
public java.sql.Array getArray(java.lang.String columnName)
throws java.sql.SQLException
getArray in interface java.sql.ResultSetResultSet.getArray(String)
public java.sql.Date getDate(int columnIndex,
java.util.Calendar cal)
throws java.sql.SQLException
getDate in interface java.sql.ResultSetResultSet.getDate(int, Calendar)
public java.sql.Date getDate(java.lang.String columnName,
java.util.Calendar cal)
throws java.sql.SQLException
getDate in interface java.sql.ResultSetResultSet.getDate(String, Calendar)
public java.sql.Time getTime(int columnIndex,
java.util.Calendar cal)
throws java.sql.SQLException
getTime in interface java.sql.ResultSetResultSet.getTime(int, Calendar)
public java.sql.Time getTime(java.lang.String columnName,
java.util.Calendar cal)
throws java.sql.SQLException
getTime in interface java.sql.ResultSetResultSet.getTime(String, Calendar)
public java.sql.Timestamp getTimestamp(int columnIndex,
java.util.Calendar cal)
throws java.sql.SQLException
getTimestamp in interface java.sql.ResultSetResultSet.getTimestamp(int, Calendar)
public java.sql.Timestamp getTimestamp(java.lang.String columnName,
java.util.Calendar cal)
throws java.sql.SQLException
getTimestamp in interface java.sql.ResultSetResultSet.getTimestamp(String, Calendar)
public java.net.URL getURL(int columnIndex)
throws java.sql.SQLException
public java.net.URL getURL(java.lang.String columnName)
throws java.sql.SQLException
public void updateRef(int columnIndex,
java.sql.Ref x)
throws java.sql.SQLException
public void updateRef(java.lang.String columnName,
java.sql.Ref x)
throws java.sql.SQLException
public void updateBlob(int columnIndex,
java.sql.Blob x)
throws java.sql.SQLException
public void updateBlob(java.lang.String columnName,
java.sql.Blob x)
throws java.sql.SQLException
public void updateClob(int columnIndex,
java.sql.Clob x)
throws java.sql.SQLException
public void updateClob(java.lang.String columnName,
java.sql.Clob x)
throws java.sql.SQLException
public void updateArray(int columnIndex,
java.sql.Array x)
throws java.sql.SQLException
public void updateArray(java.lang.String columnName,
java.sql.Array x)
throws java.sql.SQLException
|
[Deprecated API] | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | CURRENT API | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||