✓
public abstract interface ResultSet
extends java.lang.AutoCloseable, java.sql.Wrapper
Fields
- ✓public static final int CLOSE_CURSORS_AT_COMMIT = 2
- ✓public static final int CONCUR_READ_ONLY = 1007
- ✓public static final int CONCUR_UPDATABLE = 1008
- ✓public static final int FETCH_FORWARD = 1000
- ✓public static final int FETCH_REVERSE = 1001
- ✓public static final int FETCH_UNKNOWN = 1002
- ✓public static final int HOLD_CURSORS_OVER_COMMIT = 1
- ✓public static final int TYPE_FORWARD_ONLY = 1003
- ✓public static final int TYPE_SCROLL_INSENSITIVE = 1004
- ✓public static final int TYPE_SCROLL_SENSITIVE = 1005
Methods
- ✓public abstract boolean absolute(int arg0) throws java.sql.SQLException
- ✓public abstract void afterLast() throws java.sql.SQLException
- ✓public abstract void beforeFirst() throws java.sql.SQLException
- ✓public abstract void cancelRowUpdates() throws java.sql.SQLException
- ✓public abstract void clearWarnings() throws java.sql.SQLException
- ✓public abstract void close() throws java.sql.SQLException
- ✓public abstract void deleteRow() throws java.sql.SQLException
- ✓public abstract int findColumn(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract boolean first() throws java.sql.SQLException
- ✓public abstract java.sql.Array getArray(int arg0) throws java.sql.SQLException
- ✓public abstract java.sql.Array getArray(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract java.io.InputStream getAsciiStream(int arg0) throws java.sql.SQLException
- ✓public abstract java.io.InputStream getAsciiStream(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract java.math.BigDecimal getBigDecimal(int arg0) throws java.sql.SQLException
- ✓@Deprecated(since="1.2")
public abstract java.math.BigDecimal getBigDecimal(int arg0, int arg1) throws java.sql.SQLException - ✓public abstract java.math.BigDecimal getBigDecimal(java.lang.String arg0) throws java.sql.SQLException
- ✓@Deprecated(since="1.2")
public abstract java.math.BigDecimal getBigDecimal(java.lang.String arg0, int arg1) throws java.sql.SQLException - ✓public abstract java.io.InputStream getBinaryStream(int arg0) throws java.sql.SQLException
- ✓public abstract java.io.InputStream getBinaryStream(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract java.sql.Blob getBlob(int arg0) throws java.sql.SQLException
- ✓public abstract java.sql.Blob getBlob(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract boolean getBoolean(int arg0) throws java.sql.SQLException
- ✓public abstract boolean getBoolean(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract byte getByte(int arg0) throws java.sql.SQLException
- ✓public abstract byte getByte(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract byte[] getBytes(int arg0) throws java.sql.SQLException
- ✓public abstract byte[] getBytes(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract java.io.Reader getCharacterStream(int arg0) throws java.sql.SQLException
- ✓public abstract java.io.Reader getCharacterStream(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract java.sql.Clob getClob(int arg0) throws java.sql.SQLException
- ✓public abstract java.sql.Clob getClob(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract int getConcurrency() throws java.sql.SQLException
- ✓public abstract java.lang.String getCursorName() throws java.sql.SQLException
- ✓public abstract java.sql.Date getDate(int arg0) throws java.sql.SQLException
- ✓public abstract java.sql.Date getDate(int arg0, java.util.Calendar arg1) throws java.sql.SQLException
- ✓public abstract java.sql.Date getDate(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract java.sql.Date getDate(java.lang.String arg0, java.util.Calendar arg1) throws java.sql.SQLException
- ✓public abstract double getDouble(int arg0) throws java.sql.SQLException
- ✓public abstract double getDouble(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract int getFetchDirection() throws java.sql.SQLException
- ✓public abstract int getFetchSize() throws java.sql.SQLException
- ✓public abstract float getFloat(int arg0) throws java.sql.SQLException
- ✓public abstract float getFloat(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract int getHoldability() throws java.sql.SQLException
- ✓public abstract int getInt(int arg0) throws java.sql.SQLException
- ✓public abstract int getInt(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract long getLong(int arg0) throws java.sql.SQLException
- ✓public abstract long getLong(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract java.sql.ResultSetMetaData getMetaData() throws java.sql.SQLException
- ✓public abstract java.io.Reader getNCharacterStream(int arg0) throws java.sql.SQLException
- ✓public abstract java.io.Reader getNCharacterStream(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract java.sql.NClob getNClob(int arg0) throws java.sql.SQLException
- ✓public abstract java.sql.NClob getNClob(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract java.lang.String getNString(int arg0) throws java.sql.SQLException
- ✓public abstract java.lang.String getNString(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract java.lang.Object getObject(int arg0) throws java.sql.SQLException
- ✓public abstract <T> T getObject(int arg0, java.lang.Class<T> arg1) throws java.sql.SQLException
- ✓public abstract java.lang.Object getObject(int arg0, java.util.Map<java.lang.String, java.lang.Class<?>> arg1) throws java.sql.SQLException
- ✓public abstract java.lang.Object getObject(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract <T> T getObject(java.lang.String arg0, java.lang.Class<T> arg1) throws java.sql.SQLException
- ✓public abstract java.lang.Object getObject(java.lang.String arg0, java.util.Map<java.lang.String, java.lang.Class<?>> arg1) throws java.sql.SQLException
- ✓public abstract java.sql.Ref getRef(int arg0) throws java.sql.SQLException
- ✓public abstract java.sql.Ref getRef(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract int getRow() throws java.sql.SQLException
- ✓public abstract java.sql.RowId getRowId(int arg0) throws java.sql.SQLException
- ✓public abstract java.sql.RowId getRowId(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract java.sql.SQLXML getSQLXML(int arg0) throws java.sql.SQLException
- ✓public abstract java.sql.SQLXML getSQLXML(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract short getShort(int arg0) throws java.sql.SQLException
- ✓public abstract short getShort(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract java.sql.Statement getStatement() throws java.sql.SQLException
- ✓public abstract java.lang.String getString(int arg0) throws java.sql.SQLException
- ✓public abstract java.lang.String getString(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract java.sql.Time getTime(int arg0) throws java.sql.SQLException
- ✓public abstract java.sql.Time getTime(int arg0, java.util.Calendar arg1) throws java.sql.SQLException
- ✓public abstract java.sql.Time getTime(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract java.sql.Time getTime(java.lang.String arg0, java.util.Calendar arg1) throws java.sql.SQLException
- ✓public abstract java.sql.Timestamp getTimestamp(int arg0) throws java.sql.SQLException
- ✓public abstract java.sql.Timestamp getTimestamp(int arg0, java.util.Calendar arg1) throws java.sql.SQLException
- ✓public abstract java.sql.Timestamp getTimestamp(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract java.sql.Timestamp getTimestamp(java.lang.String arg0, java.util.Calendar arg1) throws java.sql.SQLException
- ✓public abstract int getType() throws java.sql.SQLException
- ✓public abstract java.net.URL getURL(int arg0) throws java.sql.SQLException
- ✓public abstract java.net.URL getURL(java.lang.String arg0) throws java.sql.SQLException
- ✓@Deprecated(since="1.2")
public abstract java.io.InputStream getUnicodeStream(int arg0) throws java.sql.SQLException - ✓@Deprecated(since="1.2")
public abstract java.io.InputStream getUnicodeStream(java.lang.String arg0) throws java.sql.SQLException - ✓public abstract java.sql.SQLWarning getWarnings() throws java.sql.SQLException
- ✓public abstract void insertRow() throws java.sql.SQLException
- ✓public abstract boolean isAfterLast() throws java.sql.SQLException
- ✓public abstract boolean isBeforeFirst() throws java.sql.SQLException
- ✓public abstract boolean isClosed() throws java.sql.SQLException
- ✓public abstract boolean isFirst() throws java.sql.SQLException
- ✓public abstract boolean isLast() throws java.sql.SQLException
- ✓public abstract boolean last() throws java.sql.SQLException
- ✓public abstract void moveToCurrentRow() throws java.sql.SQLException
- ✓public abstract void moveToInsertRow() throws java.sql.SQLException
- ✓public abstract boolean next() throws java.sql.SQLException
- ✓public abstract boolean previous() throws java.sql.SQLException
- ✓public abstract void refreshRow() throws java.sql.SQLException
- ✓public abstract boolean relative(int arg0) throws java.sql.SQLException
- ✓public abstract boolean rowDeleted() throws java.sql.SQLException
- ✓public abstract boolean rowInserted() throws java.sql.SQLException
- ✓public abstract boolean rowUpdated() throws java.sql.SQLException
- ✓public abstract void setFetchDirection(int arg0) throws java.sql.SQLException
- ✓public abstract void setFetchSize(int arg0) throws java.sql.SQLException
- ✓public abstract void updateArray(int arg0, java.sql.Array arg1) throws java.sql.SQLException
- ✓public abstract void updateArray(java.lang.String arg0, java.sql.Array arg1) throws java.sql.SQLException
- ✓public abstract void updateAsciiStream(int arg0, java.io.InputStream arg1) throws java.sql.SQLException
- ✓public abstract void updateAsciiStream(int arg0, java.io.InputStream arg1, int arg2) throws java.sql.SQLException
- ✓public abstract void updateAsciiStream(int arg0, java.io.InputStream arg1, long arg2) throws java.sql.SQLException
- ✓public abstract void updateAsciiStream(java.lang.String arg0, java.io.InputStream arg1) throws java.sql.SQLException
- ✓public abstract void updateAsciiStream(java.lang.String arg0, java.io.InputStream arg1, int arg2) throws java.sql.SQLException
- ✓public abstract void updateAsciiStream(java.lang.String arg0, java.io.InputStream arg1, long arg2) throws java.sql.SQLException
- ✓public abstract void updateBigDecimal(int arg0, java.math.BigDecimal arg1) throws java.sql.SQLException
- ✓public abstract void updateBigDecimal(java.lang.String arg0, java.math.BigDecimal arg1) throws java.sql.SQLException
- ✓public abstract void updateBinaryStream(int arg0, java.io.InputStream arg1) throws java.sql.SQLException
- ✓public abstract void updateBinaryStream(int arg0, java.io.InputStream arg1, int arg2) throws java.sql.SQLException
- ✓public abstract void updateBinaryStream(int arg0, java.io.InputStream arg1, long arg2) throws java.sql.SQLException
- ✓public abstract void updateBinaryStream(java.lang.String arg0, java.io.InputStream arg1) throws java.sql.SQLException
- ✓public abstract void updateBinaryStream(java.lang.String arg0, java.io.InputStream arg1, int arg2) throws java.sql.SQLException
- ✓public abstract void updateBinaryStream(java.lang.String arg0, java.io.InputStream arg1, long arg2) throws java.sql.SQLException
- ✓public abstract void updateBlob(int arg0, java.io.InputStream arg1) throws java.sql.SQLException
- ✓public abstract void updateBlob(int arg0, java.io.InputStream arg1, long arg2) throws java.sql.SQLException
- ✓public abstract void updateBlob(int arg0, java.sql.Blob arg1) throws java.sql.SQLException
- ✓public abstract void updateBlob(java.lang.String arg0, java.io.InputStream arg1) throws java.sql.SQLException
- ✓public abstract void updateBlob(java.lang.String arg0, java.io.InputStream arg1, long arg2) throws java.sql.SQLException
- ✓public abstract void updateBlob(java.lang.String arg0, java.sql.Blob arg1) throws java.sql.SQLException
- ✓public abstract void updateBoolean(int arg0, boolean arg1) throws java.sql.SQLException
- ✓public abstract void updateBoolean(java.lang.String arg0, boolean arg1) throws java.sql.SQLException
- ✓public abstract void updateByte(int arg0, byte arg1) throws java.sql.SQLException
- ✓public abstract void updateByte(java.lang.String arg0, byte arg1) throws java.sql.SQLException
- ✓public abstract void updateBytes(int arg0, byte[] arg1) throws java.sql.SQLException
- ✓public abstract void updateBytes(java.lang.String arg0, byte[] arg1) throws java.sql.SQLException
- ✓public abstract void updateCharacterStream(int arg0, java.io.Reader arg1) throws java.sql.SQLException
- ✓public abstract void updateCharacterStream(int arg0, java.io.Reader arg1, int arg2) throws java.sql.SQLException
- ✓public abstract void updateCharacterStream(int arg0, java.io.Reader arg1, long arg2) throws java.sql.SQLException
- ✓public abstract void updateCharacterStream(java.lang.String arg0, java.io.Reader arg1) throws java.sql.SQLException
- ✓public abstract void updateCharacterStream(java.lang.String arg0, java.io.Reader arg1, int arg2) throws java.sql.SQLException
- ✓public abstract void updateCharacterStream(java.lang.String arg0, java.io.Reader arg1, long arg2) throws java.sql.SQLException
- ✓public abstract void updateClob(int arg0, java.io.Reader arg1) throws java.sql.SQLException
- ✓public abstract void updateClob(int arg0, java.io.Reader arg1, long arg2) throws java.sql.SQLException
- ✓public abstract void updateClob(int arg0, java.sql.Clob arg1) throws java.sql.SQLException
- ✓public abstract void updateClob(java.lang.String arg0, java.io.Reader arg1) throws java.sql.SQLException
- ✓public abstract void updateClob(java.lang.String arg0, java.io.Reader arg1, long arg2) throws java.sql.SQLException
- ✓public abstract void updateClob(java.lang.String arg0, java.sql.Clob arg1) throws java.sql.SQLException
- ✓public abstract void updateDate(int arg0, java.sql.Date arg1) throws java.sql.SQLException
- ✓public abstract void updateDate(java.lang.String arg0, java.sql.Date arg1) throws java.sql.SQLException
- ✓public abstract void updateDouble(int arg0, double arg1) throws java.sql.SQLException
- ✓public abstract void updateDouble(java.lang.String arg0, double arg1) throws java.sql.SQLException
- ✓public abstract void updateFloat(int arg0, float arg1) throws java.sql.SQLException
- ✓public abstract void updateFloat(java.lang.String arg0, float arg1) throws java.sql.SQLException
- ✓public abstract void updateInt(int arg0, int arg1) throws java.sql.SQLException
- ✓public abstract void updateInt(java.lang.String arg0, int arg1) throws java.sql.SQLException
- ✓public abstract void updateLong(int arg0, long arg1) throws java.sql.SQLException
- ✓public abstract void updateLong(java.lang.String arg0, long arg1) throws java.sql.SQLException
- ✓public abstract void updateNCharacterStream(int arg0, java.io.Reader arg1) throws java.sql.SQLException
- ✓public abstract void updateNCharacterStream(int arg0, java.io.Reader arg1, long arg2) throws java.sql.SQLException
- ✓public abstract void updateNCharacterStream(java.lang.String arg0, java.io.Reader arg1) throws java.sql.SQLException
- ✓public abstract void updateNCharacterStream(java.lang.String arg0, java.io.Reader arg1, long arg2) throws java.sql.SQLException
- ✓public abstract void updateNClob(int arg0, java.io.Reader arg1) throws java.sql.SQLException
- ✓public abstract void updateNClob(int arg0, java.io.Reader arg1, long arg2) throws java.sql.SQLException
- ✓public abstract void updateNClob(int arg0, java.sql.NClob arg1) throws java.sql.SQLException
- ✓public abstract void updateNClob(java.lang.String arg0, java.io.Reader arg1) throws java.sql.SQLException
- ✓public abstract void updateNClob(java.lang.String arg0, java.io.Reader arg1, long arg2) throws java.sql.SQLException
- ✓public abstract void updateNClob(java.lang.String arg0, java.sql.NClob arg1) throws java.sql.SQLException
- ✓public abstract void updateNString(int arg0, java.lang.String arg1) throws java.sql.SQLException
- ✓public abstract void updateNString(java.lang.String arg0, java.lang.String arg1) throws java.sql.SQLException
- ✓public abstract void updateNull(int arg0) throws java.sql.SQLException
- ✓public abstract void updateNull(java.lang.String arg0) throws java.sql.SQLException
- ✓public abstract void updateObject(int arg0, java.lang.Object arg1) throws java.sql.SQLException
- ✓public abstract void updateObject(int arg0, java.lang.Object arg1, int arg2) throws java.sql.SQLException
- ✓public default void updateObject(int arg0, java.lang.Object arg1, java.sql.SQLType arg2) throws java.sql.SQLException
- ✓public default void updateObject(int arg0, java.lang.Object arg1, java.sql.SQLType arg2, int arg3) throws java.sql.SQLException
- ✓public abstract void updateObject(java.lang.String arg0, java.lang.Object arg1) throws java.sql.SQLException
- ✓public abstract void updateObject(java.lang.String arg0, java.lang.Object arg1, int arg2) throws java.sql.SQLException
- ✓public default void updateObject(java.lang.String arg0, java.lang.Object arg1, java.sql.SQLType arg2) throws java.sql.SQLException
- ✓public default void updateObject(java.lang.String arg0, java.lang.Object arg1, java.sql.SQLType arg2, int arg3) throws java.sql.SQLException
- ✓public abstract void updateRef(int arg0, java.sql.Ref arg1) throws java.sql.SQLException
- ✓public abstract void updateRef(java.lang.String arg0, java.sql.Ref arg1) throws java.sql.SQLException
- ✓public abstract void updateRow() throws java.sql.SQLException
- ✓public abstract void updateRowId(int arg0, java.sql.RowId arg1) throws java.sql.SQLException
- ✓public abstract void updateRowId(java.lang.String arg0, java.sql.RowId arg1) throws java.sql.SQLException
- ✓public abstract void updateSQLXML(int arg0, java.sql.SQLXML arg1) throws java.sql.SQLException
- ✓public abstract void updateSQLXML(java.lang.String arg0, java.sql.SQLXML arg1) throws java.sql.SQLException
- ✓public abstract void updateShort(int arg0, short arg1) throws java.sql.SQLException
- ✓public abstract void updateShort(java.lang.String arg0, short arg1) throws java.sql.SQLException
- ✓public abstract void updateString(int arg0, java.lang.String arg1) throws java.sql.SQLException
- ✓public abstract void updateString(java.lang.String arg0, java.lang.String arg1) throws java.sql.SQLException
- ✓public abstract void updateTime(int arg0, java.sql.Time arg1) throws java.sql.SQLException
- ✓public abstract void updateTime(java.lang.String arg0, java.sql.Time arg1) throws java.sql.SQLException
- ✓public abstract void updateTimestamp(int arg0, java.sql.Timestamp arg1) throws java.sql.SQLException
- ✓public abstract void updateTimestamp(java.lang.String arg0, java.sql.Timestamp arg1) throws java.sql.SQLException
- ✓public abstract boolean wasNull() throws java.sql.SQLException