Prev Class | Next Class | Frames | No Frames |
Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
java.lang.Object
org.postgresql.pljava.jdbc.AbstractResultSet
org.postgresql.pljava.jdbc.ObjectResultSet
org.postgresql.pljava.jdbc.ReadOnlyResultSet
public abstract class ReadOnlyResultSet
extends ObjectResultSet
UnsupportedFeatureException
.
Method Summary | |
void |
|
void |
|
int |
|
void |
|
void |
|
void |
|
boolean |
|
boolean |
|
boolean |
|
void |
|
void |
|
void |
|
Methods inherited from class org.postgresql.pljava.jdbc.ObjectResultSet | |
clearWarnings , getArray , getAsciiStream , getBigDecimal , getBigDecimal , getBinaryStream , getBlob , getBoolean , getByte , getBytes , getCharacterStream , getClob , getDate , getDate , getDouble , getFloat , getInt , getLong , getMetaData , getNumber , getObject , getObject , getObjectValue , getObjectValue , getRef , getShort , getString , getTime , getTime , getTimestamp , getTimestamp , getURL , getUnicodeStream , getValue , getValue , getWarnings , refreshRow , updateArray , updateAsciiStream , updateBigDecimal , updateBinaryStream , updateBlob , updateBoolean , updateByte , updateBytes , updateCharacterStream , updateClob , updateDate , updateDouble , updateFloat , updateInt , updateLong , updateNull , updateRef , updateShort , updateString , updateTime , updateTimestamp , wasNull |
Methods inherited from class org.postgresql.pljava.jdbc.AbstractResultSet | |
getArray , getAsciiStream , getBigDecimal , getBigDecimal , getBinaryStream , getBlob , getBoolean , getByte , getBytes , getCharacterStream , getClob , getCursorName , getDate , getDate , getDouble , getFloat , getInt , getLong , getObject , getObject , getRef , getShort , getStatement , getString , getTime , getTime , getTimestamp , getTimestamp , getURL , getUnicodeStream , updateArray , updateAsciiStream , updateBigDecimal , updateBinaryStream , updateBlob , updateBoolean , updateByte , updateBytes , updateCharacterStream , updateClob , updateDate , updateDouble , updateFloat , updateInt , updateLong , updateNull , updateObject , updateObject , updateRef , updateShort , updateString , updateTime , updateTimestamp |
public void cancelRowUpdates() throws SQLException
This feature is not supported on aReadOnlyResultSet
.
public void deleteRow() throws SQLException
This feature is not supported on aReadOnlyResultSet
.
public int getConcurrency() throws SQLException
ReturnsResultSet.CONCUR_READ_ONLY
.
public void insertRow() throws SQLException
This feature is not supported on aReadOnlyResultSet
.
public void moveToCurrentRow() throws SQLException
This is a no-op since themoveToInsertRow()
method is unsupported.
public void moveToInsertRow() throws SQLException
This feature is not supported on aReadOnlyResultSet
.
public boolean rowDeleted() throws SQLException
Always returns false.
public boolean rowInserted() throws SQLException
Always returns false.
public boolean rowUpdated() throws SQLException
Always returns false.
public void updateObject(int columnIndex, Object x) throws SQLException
This feature is not supported on aReadOnlyResultSet
.
public void updateObject(int columnIndex, Object x, int scale) throws SQLException
This feature is not supported on aReadOnlyResultSet
.
public void updateRow() throws SQLException
This feature is not supported on aReadOnlyResultSet
.