com.alibaba.druid.util.jdbc
类 ResultSetBase

java.lang.Object
  继承者 com.alibaba.druid.util.jdbc.ResultSetBase
所有已实现的接口:
ResultSet, Wrapper
直接已知子类:
LocalResultSet, MockResultSet

public abstract class ResultSetBase
extends Object
implements ResultSet


字段摘要
 
从接口 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
 
构造方法摘要
ResultSetBase(Statement statement)
           
 
方法摘要
 boolean absolute(int row)
           
 void afterLast()
           
 void beforeFirst()
           
 void cancelRowUpdates()
           
 void clearWarnings()
           
 void close()
           
 void deleteRow()
           
 int findColumn(String columnLabel)
           
 boolean first()
           
 Array getArray(int columnIndex)
           
 Array getArray(String columnLabel)
           
 InputStream getAsciiStream(int columnIndex)
           
 InputStream getAsciiStream(String columnLabel)
           
 BigDecimal getBigDecimal(int columnIndex)
           
 BigDecimal getBigDecimal(int columnIndex, int scale)
           
 BigDecimal getBigDecimal(String columnLabel)
           
 BigDecimal getBigDecimal(String columnLabel, int scale)
           
 InputStream getBinaryStream(int columnIndex)
           
 InputStream getBinaryStream(String columnLabel)
           
 Blob getBlob(int columnIndex)
           
 Blob getBlob(String columnLabel)
           
 boolean getBoolean(int columnIndex)
           
 boolean getBoolean(String columnLabel)
           
 byte getByte(int columnIndex)
           
 byte getByte(String columnLabel)
           
 byte[] getBytes(int columnIndex)
           
 byte[] getBytes(String columnLabel)
           
 Reader getCharacterStream(int columnIndex)
           
 Reader getCharacterStream(String columnLabel)
           
 Clob getClob(int columnIndex)
           
 Clob getClob(String columnLabel)
           
 int getConcurrency()
           
 String getCursorName()
           
 Date getDate(int columnIndex)
           
 Date getDate(int columnIndex, Calendar cal)
           
 Date getDate(String columnLabel)
           
 Date getDate(String columnLabel, Calendar cal)
           
 double getDouble(int columnIndex)
           
 double getDouble(String columnLabel)
           
 int getFetchDirection()
           
 int getFetchSize()
           
 float getFloat(int columnIndex)
           
 float getFloat(String columnLabel)
           
 int getHoldability()
           
 int getInt(int columnIndex)
           
 int getInt(String columnLabel)
           
 long getLong(int columnIndex)
           
 long getLong(String columnLabel)
           
 ResultSetMetaData getMetaData()
           
 Reader getNCharacterStream(int columnIndex)
           
 Reader getNCharacterStream(String columnLabel)
           
 NClob getNClob(int columnIndex)
           
 NClob getNClob(String columnLabel)
           
 String getNString(int columnIndex)
           
 String getNString(String columnLabel)
           
 Object getObject(int columnIndex)
           
<T> T
getObject(int columnIndex, Class<T> type)
           
 Object getObject(int columnIndex, Map<String,Class<?>> map)
           
 Object getObject(String columnLabel)
           
<T> T
getObject(String columnLabel, Class<T> type)
           
 Object getObject(String columnLabel, Map<String,Class<?>> map)
           
 Object getObjectInternal(int columnIndex)
           
 Ref getRef(int columnIndex)
           
 Ref getRef(String columnLabel)
           
 int getRow()
           
 RowId getRowId(int columnIndex)
           
 RowId getRowId(String columnLabel)
           
 short getShort(int columnIndex)
           
 short getShort(String columnLabel)
           
 SQLXML getSQLXML(int columnIndex)
           
 SQLXML getSQLXML(String columnLabel)
           
 Statement getStatement()
           
 String getString(int columnIndex)
           
 String getString(String columnLabel)
           
 Time getTime(int columnIndex)
           
 Time getTime(int columnIndex, Calendar cal)
           
 Time getTime(String columnLabel)
           
 Time getTime(String columnLabel, Calendar cal)
           
 Timestamp getTimestamp(int columnIndex)
           
 Timestamp getTimestamp(int columnIndex, Calendar cal)
           
 Timestamp getTimestamp(String columnLabel)
           
 Timestamp getTimestamp(String columnLabel, Calendar cal)
           
 int getType()
           
 InputStream getUnicodeStream(int columnIndex)
           
 InputStream getUnicodeStream(String columnLabel)
           
 URL getURL(int columnIndex)
           
 URL getURL(String columnLabel)
           
 SQLWarning getWarnings()
           
 void insertRow()
           
 boolean isAfterLast()
           
 boolean isBeforeFirst()
           
 boolean isClosed()
           
 boolean isFirst()
           
 boolean isLast()
           
 boolean isWrapperFor(Class<?> iface)
           
 boolean last()
           
 void moveToCurrentRow()
           
 void moveToInsertRow()
           
 void refreshRow()
           
 boolean relative(int rows)
           
 boolean rowDeleted()
           
 boolean rowInserted()
           
 boolean rowUpdated()
           
 void setCursorName(String cursorName)
           
 void setFetchDirection(int direction)
           
 void setFetchSize(int rows)
           
 void setWarning(SQLWarning warning)
           
<T> T
unwrap(Class<T> iface)
           
 void updateArray(int columnIndex, Array x)
           
 void updateArray(String columnLabel, Array x)
           
 void updateAsciiStream(int columnIndex, InputStream x)
           
 void updateAsciiStream(int columnIndex, InputStream x, int length)
           
 void updateAsciiStream(int columnIndex, InputStream x, long length)
           
 void updateAsciiStream(String columnLabel, InputStream x)
           
 void updateAsciiStream(String columnLabel, InputStream x, int length)
           
 void updateAsciiStream(String columnLabel, InputStream x, long length)
           
 void updateBigDecimal(int columnIndex, BigDecimal x)
           
 void updateBigDecimal(String columnLabel, BigDecimal x)
           
 void updateBinaryStream(int columnIndex, InputStream x)
           
 void updateBinaryStream(int columnIndex, InputStream x, int length)
           
 void updateBinaryStream(int columnIndex, InputStream x, long length)
           
 void updateBinaryStream(String columnLabel, InputStream x)
           
 void updateBinaryStream(String columnLabel, InputStream x, int length)
           
 void updateBinaryStream(String columnLabel, InputStream x, long length)
           
 void updateBlob(int columnIndex, Blob x)
           
 void updateBlob(int columnIndex, InputStream x)
           
 void updateBlob(int columnIndex, InputStream x, long length)
           
 void updateBlob(String columnLabel, Blob x)
           
 void updateBlob(String columnLabel, InputStream x)
           
 void updateBlob(String columnLabel, InputStream x, long length)
           
 void updateBoolean(int columnIndex, boolean x)
           
 void updateBoolean(String columnLabel, boolean x)
           
 void updateByte(int columnIndex, byte x)
           
 void updateByte(String columnLabel, byte x)
           
 void updateBytes(int columnIndex, byte[] x)
           
 void updateBytes(String columnLabel, byte[] x)
           
 void updateCharacterStream(int columnIndex, Reader x)
           
 void updateCharacterStream(int columnIndex, Reader x, int length)
           
 void updateCharacterStream(int columnIndex, Reader x, long length)
           
 void updateCharacterStream(String columnLabel, Reader x)
           
 void updateCharacterStream(String columnLabel, Reader reader, int length)
           
 void updateCharacterStream(String columnLabel, Reader x, long length)
           
 void updateClob(int columnIndex, Clob x)
           
 void updateClob(int columnIndex, Reader x)
           
 void updateClob(int columnIndex, Reader x, long length)
           
 void updateClob(String columnLabel, Clob x)
           
 void updateClob(String columnLabel, Reader x)
           
 void updateClob(String columnLabel, Reader x, long length)
           
 void updateDate(int columnIndex, Date x)
           
 void updateDate(String columnLabel, Date x)
           
 void updateDouble(int columnIndex, double x)
           
 void updateDouble(String columnLabel, double x)
           
 void updateFloat(int columnIndex, float x)
           
 void updateFloat(String columnLabel, float x)
           
 void updateInt(int columnIndex, int x)
           
 void updateInt(String columnLabel, int x)
           
 void updateLong(int columnIndex, long x)
           
 void updateLong(String columnLabel, long x)
           
 void updateNCharacterStream(int columnIndex, Reader x)
           
 void updateNCharacterStream(int columnIndex, Reader x, long length)
           
 void updateNCharacterStream(String columnLabel, Reader x)
           
 void updateNCharacterStream(String columnLabel, Reader x, long length)
           
 void updateNClob(int columnIndex, NClob x)
           
 void updateNClob(int columnIndex, Reader x)
           
 void updateNClob(int columnIndex, Reader x, long length)
           
 void updateNClob(String columnLabel, NClob x)
           
 void updateNClob(String columnLabel, Reader x)
           
 void updateNClob(String columnLabel, Reader x, long length)
           
 void updateNString(int columnIndex, String x)
           
 void updateNString(String columnLabel, String x)
           
 void updateNull(int columnIndex)
           
 void updateNull(String columnLabel)
           
 void updateObject(int columnIndex, Object x, int scaleOrLength)
           
 void updateObject(String columnLabel, Object x)
           
 void updateObject(String columnLabel, Object x, int scaleOrLength)
           
 void updateRef(int columnIndex, Ref x)
           
 void updateRef(String columnLabel, Ref x)
           
 void updateRow()
           
 void updateRowId(int columnIndex, RowId x)
           
 void updateRowId(String columnLabel, RowId x)
           
 void updateShort(int columnIndex, short x)
           
 void updateShort(String columnLabel, short x)
           
 void updateSQLXML(int columnIndex, SQLXML x)
           
 void updateSQLXML(String columnLabel, SQLXML x)
           
 void updateString(int columnIndex, String x)
           
 void updateString(String columnLabel, String x)
           
 void updateTime(int columnIndex, Time x)
           
 void updateTime(String columnLabel, Time x)
           
 void updateTimestamp(int columnIndex, Timestamp x)
           
 void updateTimestamp(String columnLabel, Timestamp x)
           
 boolean wasNull()
           
 
从类 java.lang.Object 继承的方法
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
从接口 java.sql.ResultSet 继承的方法
next, previous, updateObject
 

构造方法详细信息

ResultSetBase

public ResultSetBase(Statement statement)
方法详细信息

isClosed

public boolean isClosed()
                 throws SQLException
指定者:
接口 ResultSet 中的 isClosed
抛出:
SQLException

updateNString

public void updateNString(int columnIndex,
                          String x)
                   throws SQLException
指定者:
接口 ResultSet 中的 updateNString
抛出:
SQLException

updateNString

public void updateNString(String columnLabel,
                          String x)
                   throws SQLException
指定者:
接口 ResultSet 中的 updateNString
抛出:
SQLException

updateNClob

public void updateNClob(int columnIndex,
                        NClob x)
                 throws SQLException
指定者:
接口 ResultSet 中的 updateNClob
抛出:
SQLException

updateNClob

public void updateNClob(String columnLabel,
                        NClob x)
                 throws SQLException
指定者:
接口 ResultSet 中的 updateNClob
抛出:
SQLException

getNClob

public NClob getNClob(int columnIndex)
               throws SQLException
指定者:
接口 ResultSet 中的 getNClob
抛出:
SQLException

getNClob

public NClob getNClob(String columnLabel)
               throws SQLException
指定者:
接口 ResultSet 中的 getNClob
抛出:
SQLException

getSQLXML

public SQLXML getSQLXML(int columnIndex)
                 throws SQLException
指定者:
接口 ResultSet 中的 getSQLXML
抛出:
SQLException

getSQLXML

public SQLXML getSQLXML(String columnLabel)
                 throws SQLException
指定者:
接口 ResultSet 中的 getSQLXML
抛出:
SQLException

updateSQLXML

public void updateSQLXML(int columnIndex,
                         SQLXML x)
                  throws SQLException
指定者:
接口 ResultSet 中的 updateSQLXML
抛出:
SQLException

updateSQLXML

public void updateSQLXML(String columnLabel,
                         SQLXML x)
                  throws SQLException
指定者:
接口 ResultSet 中的 updateSQLXML
抛出:
SQLException

getNString

public String getNString(int columnIndex)
                  throws SQLException
指定者:
接口 ResultSet 中的 getNString
抛出:
SQLException

getNString

public String getNString(String columnLabel)
                  throws SQLException
指定者:
接口 ResultSet 中的 getNString
抛出:
SQLException

getNCharacterStream

public Reader getNCharacterStream(int columnIndex)
                           throws SQLException
指定者:
接口 ResultSet 中的 getNCharacterStream
抛出:
SQLException

getNCharacterStream

public Reader getNCharacterStream(String columnLabel)
                           throws SQLException
指定者:
接口 ResultSet 中的 getNCharacterStream
抛出:
SQLException

updateNCharacterStream

public void updateNCharacterStream(int columnIndex,
                                   Reader x,
                                   long length)
                            throws SQLException
指定者:
接口 ResultSet 中的 updateNCharacterStream
抛出:
SQLException

updateNCharacterStream

public void updateNCharacterStream(String columnLabel,
                                   Reader x,
                                   long length)
                            throws SQLException
指定者:
接口 ResultSet 中的 updateNCharacterStream
抛出:
SQLException

updateAsciiStream

public void updateAsciiStream(int columnIndex,
                              InputStream x,
                              long length)
                       throws SQLException
指定者:
接口 ResultSet 中的 updateAsciiStream
抛出:
SQLException

updateBinaryStream

public void updateBinaryStream(int columnIndex,
                               InputStream x,
                               long length)
                        throws SQLException
指定者:
接口 ResultSet 中的 updateBinaryStream
抛出:
SQLException

updateCharacterStream

public void updateCharacterStream(int columnIndex,
                                  Reader x,
                                  long length)
                           throws SQLException
指定者:
接口 ResultSet 中的 updateCharacterStream
抛出:
SQLException

updateAsciiStream

public void updateAsciiStream(String columnLabel,
                              InputStream x,
                              long length)
                       throws SQLException
指定者:
接口 ResultSet 中的 updateAsciiStream
抛出:
SQLException

updateBinaryStream

public void updateBinaryStream(String columnLabel,
                               InputStream x,
                               long length)
                        throws SQLException
指定者:
接口 ResultSet 中的 updateBinaryStream
抛出:
SQLException

updateCharacterStream

public void updateCharacterStream(String columnLabel,
                                  Reader x,
                                  long length)
                           throws SQLException
指定者:
接口 ResultSet 中的 updateCharacterStream
抛出:
SQLException

updateBlob

public void updateBlob(int columnIndex,
                       InputStream x,
                       long length)
                throws SQLException
指定者:
接口 ResultSet 中的 updateBlob
抛出:
SQLException

updateBlob

public void updateBlob(String columnLabel,
                       InputStream x,
                       long length)
                throws SQLException
指定者:
接口 ResultSet 中的 updateBlob
抛出:
SQLException

updateClob

public void updateClob(int columnIndex,
                       Reader x,
                       long length)
                throws SQLException
指定者:
接口 ResultSet 中的 updateClob
抛出:
SQLException

updateClob

public void updateClob(String columnLabel,
                       Reader x,
                       long length)
                throws SQLException
指定者:
接口 ResultSet 中的 updateClob
抛出:
SQLException

updateNClob

public void updateNClob(int columnIndex,
                        Reader x,
                        long length)
                 throws SQLException
指定者:
接口 ResultSet 中的 updateNClob
抛出:
SQLException

updateNClob

public void updateNClob(String columnLabel,
                        Reader x,
                        long length)
                 throws SQLException
指定者:
接口 ResultSet 中的 updateNClob
抛出:
SQLException

updateNCharacterStream

public void updateNCharacterStream(int columnIndex,
                                   Reader x)
                            throws SQLException
指定者:
接口 ResultSet 中的 updateNCharacterStream
抛出:
SQLException

updateNCharacterStream

public void updateNCharacterStream(String columnLabel,
                                   Reader x)
                            throws SQLException
指定者:
接口 ResultSet 中的 updateNCharacterStream
抛出:
SQLException

updateAsciiStream

public void updateAsciiStream(int columnIndex,
                              InputStream x)
                       throws SQLException
指定者:
接口 ResultSet 中的 updateAsciiStream
抛出:
SQLException

updateBinaryStream

public void updateBinaryStream(int columnIndex,
                               InputStream x)
                        throws SQLException
指定者:
接口 ResultSet 中的 updateBinaryStream
抛出:
SQLException

updateCharacterStream

public void updateCharacterStream(int columnIndex,
                                  Reader x)
                           throws SQLException
指定者:
接口 ResultSet 中的 updateCharacterStream
抛出:
SQLException

updateAsciiStream

public void updateAsciiStream(String columnLabel,
                              InputStream x)
                       throws SQLException
指定者:
接口 ResultSet 中的 updateAsciiStream
抛出:
SQLException

updateBinaryStream

public void updateBinaryStream(String columnLabel,
                               InputStream x)
                        throws SQLException
指定者:
接口 ResultSet 中的 updateBinaryStream
抛出:
SQLException

updateCharacterStream

public void updateCharacterStream(String columnLabel,
                                  Reader x)
                           throws SQLException
指定者:
接口 ResultSet 中的 updateCharacterStream
抛出:
SQLException

updateBlob

public void updateBlob(int columnIndex,
                       InputStream x)
                throws SQLException
指定者:
接口 ResultSet 中的 updateBlob
抛出:
SQLException

updateBlob

public void updateBlob(String columnLabel,
                       InputStream x)
                throws SQLException
指定者:
接口 ResultSet 中的 updateBlob
抛出:
SQLException

updateClob

public void updateClob(int columnIndex,
                       Reader x)
                throws SQLException
指定者:
接口 ResultSet 中的 updateClob
抛出:
SQLException

updateClob

public void updateClob(String columnLabel,
                       Reader x)
                throws SQLException
指定者:
接口 ResultSet 中的 updateClob
抛出:
SQLException

updateNClob

public void updateNClob(int columnIndex,
                        Reader x)
                 throws SQLException
指定者:
接口 ResultSet 中的 updateNClob
抛出:
SQLException

updateNClob

public void updateNClob(String columnLabel,
                        Reader x)
                 throws SQLException
指定者:
接口 ResultSet 中的 updateNClob
抛出:
SQLException

getObject

public <T> T getObject(int columnIndex,
                       Class<T> type)
            throws SQLException
抛出:
SQLException

getObject

public <T> T getObject(String columnLabel,
                       Class<T> type)
            throws SQLException
抛出:
SQLException

unwrap

public <T> T unwrap(Class<T> iface)
         throws SQLException
指定者:
接口 Wrapper 中的 unwrap
抛出:
SQLException

isWrapperFor

public boolean isWrapperFor(Class<?> iface)
                     throws SQLException
指定者:
接口 Wrapper 中的 isWrapperFor
抛出:
SQLException

close

public void close()
           throws SQLException
指定者:
接口 ResultSet 中的 close
抛出:
SQLException

wasNull

public boolean wasNull()
                throws SQLException
指定者:
接口 ResultSet 中的 wasNull
抛出:
SQLException

getObjectInternal

public Object getObjectInternal(int columnIndex)
                         throws SQLException
抛出:
SQLException

getObject

public Object getObject(int columnIndex)
                 throws SQLException
指定者:
接口 ResultSet 中的 getObject
抛出:
SQLException

getObject

public Object getObject(String columnLabel)
                 throws SQLException
指定者:
接口 ResultSet 中的 getObject
抛出:
SQLException

findColumn

public int findColumn(String columnLabel)
               throws SQLException
指定者:
接口 ResultSet 中的 findColumn
抛出:
SQLException

getCharacterStream

public Reader getCharacterStream(int columnIndex)
                          throws SQLException
指定者:
接口 ResultSet 中的 getCharacterStream
抛出:
SQLException

getCharacterStream

public Reader getCharacterStream(String columnLabel)
                          throws SQLException
指定者:
接口 ResultSet 中的 getCharacterStream
抛出:
SQLException

getBigDecimal

public BigDecimal getBigDecimal(int columnIndex)
                         throws SQLException
指定者:
接口 ResultSet 中的 getBigDecimal
抛出:
SQLException

getBigDecimal

public BigDecimal getBigDecimal(String columnLabel)
                         throws SQLException
指定者:
接口 ResultSet 中的 getBigDecimal
抛出:
SQLException

clearWarnings

public void clearWarnings()
                   throws SQLException
指定者:
接口 ResultSet 中的 clearWarnings
抛出:
SQLException

setWarning

public void setWarning(SQLWarning warning)

getCursorName

public String getCursorName()
                     throws SQLException
指定者:
接口 ResultSet 中的 getCursorName
抛出:
SQLException

setCursorName

public void setCursorName(String cursorName)

getWarnings

public SQLWarning getWarnings()
                       throws SQLException
指定者:
接口 ResultSet 中的 getWarnings
抛出:
SQLException

setFetchDirection

public void setFetchDirection(int direction)
                       throws SQLException
指定者:
接口 ResultSet 中的 setFetchDirection
抛出:
SQLException

getFetchDirection

public int getFetchDirection()
                      throws SQLException
指定者:
接口 ResultSet 中的 getFetchDirection
抛出:
SQLException

setFetchSize

public void setFetchSize(int rows)
                  throws SQLException
指定者:
接口 ResultSet 中的 setFetchSize
抛出:
SQLException

getFetchSize

public int getFetchSize()
                 throws SQLException
指定者:
接口 ResultSet 中的 getFetchSize
抛出:
SQLException

rowUpdated

public boolean rowUpdated()
                   throws SQLException
指定者:
接口 ResultSet 中的 rowUpdated
抛出:
SQLException

rowInserted

public boolean rowInserted()
                    throws SQLException
指定者:
接口 ResultSet 中的 rowInserted
抛出:
SQLException

rowDeleted

public boolean rowDeleted()
                   throws SQLException
指定者:
接口 ResultSet 中的 rowDeleted
抛出:
SQLException

updateNull

public void updateNull(int columnIndex)
                throws SQLException
指定者:
接口 ResultSet 中的 updateNull
抛出:
SQLException

updateBoolean

public void updateBoolean(int columnIndex,
                          boolean x)
                   throws SQLException
指定者:
接口 ResultSet 中的 updateBoolean
抛出:
SQLException

updateByte

public void updateByte(int columnIndex,
                       byte x)
                throws SQLException
指定者:
接口 ResultSet 中的 updateByte
抛出:
SQLException

updateShort

public void updateShort(int columnIndex,
                        short x)
                 throws SQLException
指定者:
接口 ResultSet 中的 updateShort
抛出:
SQLException

updateInt

public void updateInt(int columnIndex,
                      int x)
               throws SQLException
指定者:
接口 ResultSet 中的 updateInt
抛出:
SQLException

updateLong

public void updateLong(int columnIndex,
                       long x)
                throws SQLException
指定者:
接口 ResultSet 中的 updateLong
抛出:
SQLException

updateFloat

public void updateFloat(int columnIndex,
                        float x)
                 throws SQLException
指定者:
接口 ResultSet 中的 updateFloat
抛出:
SQLException

updateDouble

public void updateDouble(int columnIndex,
                         double x)
                  throws SQLException
指定者:
接口 ResultSet 中的 updateDouble
抛出:
SQLException

updateBigDecimal

public void updateBigDecimal(int columnIndex,
                             BigDecimal x)
                      throws SQLException
指定者:
接口 ResultSet 中的 updateBigDecimal
抛出:
SQLException

updateString

public void updateString(int columnIndex,
                         String x)
                  throws SQLException
指定者:
接口 ResultSet 中的 updateString
抛出:
SQLException

updateBytes

public void updateBytes(int columnIndex,
                        byte[] x)
                 throws SQLException
指定者:
接口 ResultSet 中的 updateBytes
抛出:
SQLException

updateDate

public void updateDate(int columnIndex,
                       Date x)
                throws SQLException
指定者:
接口 ResultSet 中的 updateDate
抛出:
SQLException

updateTime

public void updateTime(int columnIndex,
                       Time x)
                throws SQLException
指定者:
接口 ResultSet 中的 updateTime
抛出:
SQLException

updateTimestamp

public void updateTimestamp(int columnIndex,
                            Timestamp x)
                     throws SQLException
指定者:
接口 ResultSet 中的 updateTimestamp
抛出:
SQLException

updateAsciiStream

public void updateAsciiStream(int columnIndex,
                              InputStream x,
                              int length)
                       throws SQLException
指定者:
接口 ResultSet 中的 updateAsciiStream
抛出:
SQLException

updateBinaryStream

public void updateBinaryStream(int columnIndex,
                               InputStream x,
                               int length)
                        throws SQLException
指定者:
接口 ResultSet 中的 updateBinaryStream
抛出:
SQLException

updateCharacterStream

public void updateCharacterStream(int columnIndex,
                                  Reader x,
                                  int length)
                           throws SQLException
指定者:
接口 ResultSet 中的 updateCharacterStream
抛出:
SQLException

updateObject

public void updateObject(int columnIndex,
                         Object x,
                         int scaleOrLength)
                  throws SQLException
指定者:
接口 ResultSet 中的 updateObject
抛出:
SQLException

updateNull

public void updateNull(String columnLabel)
                throws SQLException
指定者:
接口 ResultSet 中的 updateNull
抛出:
SQLException

updateBoolean

public void updateBoolean(String columnLabel,
                          boolean x)
                   throws SQLException
指定者:
接口 ResultSet 中的 updateBoolean
抛出:
SQLException

updateByte

public void updateByte(String columnLabel,
                       byte x)
                throws SQLException
指定者:
接口 ResultSet 中的 updateByte
抛出:
SQLException

updateShort

public void updateShort(String columnLabel,
                        short x)
                 throws SQLException
指定者:
接口 ResultSet 中的 updateShort
抛出:
SQLException

updateInt

public void updateInt(String columnLabel,
                      int x)
               throws SQLException
指定者:
接口 ResultSet 中的 updateInt
抛出:
SQLException

updateLong

public void updateLong(String columnLabel,
                       long x)
                throws SQLException
指定者:
接口 ResultSet 中的 updateLong
抛出:
SQLException

updateFloat

public void updateFloat(String columnLabel,
                        float x)
                 throws SQLException
指定者:
接口 ResultSet 中的 updateFloat
抛出:
SQLException

updateDouble

public void updateDouble(String columnLabel,
                         double x)
                  throws SQLException
指定者:
接口 ResultSet 中的 updateDouble
抛出:
SQLException

updateBigDecimal

public void updateBigDecimal(String columnLabel,
                             BigDecimal x)
                      throws SQLException
指定者:
接口 ResultSet 中的 updateBigDecimal
抛出:
SQLException

updateString

public void updateString(String columnLabel,
                         String x)
                  throws SQLException
指定者:
接口 ResultSet 中的 updateString
抛出:
SQLException

updateBytes

public void updateBytes(String columnLabel,
                        byte[] x)
                 throws SQLException
指定者:
接口 ResultSet 中的 updateBytes
抛出:
SQLException

updateDate

public void updateDate(String columnLabel,
                       Date x)
                throws SQLException
指定者:
接口 ResultSet 中的 updateDate
抛出:
SQLException

updateTime

public void updateTime(String columnLabel,
                       Time x)
                throws SQLException
指定者:
接口 ResultSet 中的 updateTime
抛出:
SQLException

updateTimestamp

public void updateTimestamp(String columnLabel,
                            Timestamp x)
                     throws SQLException
指定者:
接口 ResultSet 中的 updateTimestamp
抛出:
SQLException

updateAsciiStream

public void updateAsciiStream(String columnLabel,
                              InputStream x,
                              int length)
                       throws SQLException
指定者:
接口 ResultSet 中的 updateAsciiStream
抛出:
SQLException

updateBinaryStream

public void updateBinaryStream(String columnLabel,
                               InputStream x,
                               int length)
                        throws SQLException
指定者:
接口 ResultSet 中的 updateBinaryStream
抛出:
SQLException

updateCharacterStream

public void updateCharacterStream(String columnLabel,
                                  Reader reader,
                                  int length)
                           throws SQLException
指定者:
接口 ResultSet 中的 updateCharacterStream
抛出:
SQLException

updateObject

public void updateObject(String columnLabel,
                         Object x,
                         int scaleOrLength)
                  throws SQLException
指定者:
接口 ResultSet 中的 updateObject
抛出:
SQLException

updateObject

public void updateObject(String columnLabel,
                         Object x)
                  throws SQLException
指定者:
接口 ResultSet 中的 updateObject
抛出:
SQLException

insertRow

public void insertRow()
               throws SQLException
指定者:
接口 ResultSet 中的 insertRow
抛出:
SQLException

updateRow

public void updateRow()
               throws SQLException
指定者:
接口 ResultSet 中的 updateRow
抛出:
SQLException

deleteRow

public void deleteRow()
               throws SQLException
指定者:
接口 ResultSet 中的 deleteRow
抛出:
SQLException

refreshRow

public void refreshRow()
                throws SQLException
指定者:
接口 ResultSet 中的 refreshRow
抛出:
SQLException

cancelRowUpdates

public void cancelRowUpdates()
                      throws SQLException
指定者:
接口 ResultSet 中的 cancelRowUpdates
抛出:
SQLException

moveToInsertRow

public void moveToInsertRow()
                     throws SQLException
指定者:
接口 ResultSet 中的 moveToInsertRow
抛出:
SQLException

moveToCurrentRow

public void moveToCurrentRow()
                      throws SQLException
指定者:
接口 ResultSet 中的 moveToCurrentRow
抛出:
SQLException

getStatement

public Statement getStatement()
                       throws SQLException
指定者:
接口 ResultSet 中的 getStatement
抛出:
SQLException

getObject

public Object getObject(int columnIndex,
                        Map<String,Class<?>> map)
                 throws SQLException
指定者:
接口 ResultSet 中的 getObject
抛出:
SQLException

getRef

public Ref getRef(int columnIndex)
           throws SQLException
指定者:
接口 ResultSet 中的 getRef
抛出:
SQLException

getBlob

public Blob getBlob(int columnIndex)
             throws SQLException
指定者:
接口 ResultSet 中的 getBlob
抛出:
SQLException

getClob

public Clob getClob(int columnIndex)
             throws SQLException
指定者:
接口 ResultSet 中的 getClob
抛出:
SQLException

getArray

public Array getArray(int columnIndex)
               throws SQLException
指定者:
接口 ResultSet 中的 getArray
抛出:
SQLException

getObject

public Object getObject(String columnLabel,
                        Map<String,Class<?>> map)
                 throws SQLException
指定者:
接口 ResultSet 中的 getObject
抛出:
SQLException

getRef

public Ref getRef(String columnLabel)
           throws SQLException
指定者:
接口 ResultSet 中的 getRef
抛出:
SQLException

getBlob

public Blob getBlob(String columnLabel)
             throws SQLException
指定者:
接口 ResultSet 中的 getBlob
抛出:
SQLException

getClob

public Clob getClob(String columnLabel)
             throws SQLException
指定者:
接口 ResultSet 中的 getClob
抛出:
SQLException

getArray

public Array getArray(String columnLabel)
               throws SQLException
指定者:
接口 ResultSet 中的 getArray
抛出:
SQLException

getDate

public Date getDate(int columnIndex,
                    Calendar cal)
             throws SQLException
指定者:
接口 ResultSet 中的 getDate
抛出:
SQLException

getDate

public Date getDate(String columnLabel,
                    Calendar cal)
             throws SQLException
指定者:
接口 ResultSet 中的 getDate
抛出:
SQLException

getTime

public Time getTime(int columnIndex,
                    Calendar cal)
             throws SQLException
指定者:
接口 ResultSet 中的 getTime
抛出:
SQLException

getTime

public Time getTime(String columnLabel,
                    Calendar cal)
             throws SQLException
指定者:
接口 ResultSet 中的 getTime
抛出:
SQLException

getTimestamp

public Timestamp getTimestamp(int columnIndex,
                              Calendar cal)
                       throws SQLException
指定者:
接口 ResultSet 中的 getTimestamp
抛出:
SQLException

getTimestamp

public Timestamp getTimestamp(String columnLabel,
                              Calendar cal)
                       throws SQLException
指定者:
接口 ResultSet 中的 getTimestamp
抛出:
SQLException

getURL

public URL getURL(int columnIndex)
           throws SQLException
指定者:
接口 ResultSet 中的 getURL
抛出:
SQLException

getURL

public URL getURL(String columnLabel)
           throws SQLException
指定者:
接口 ResultSet 中的 getURL
抛出:
SQLException

updateRef

public void updateRef(int columnIndex,
                      Ref x)
               throws SQLException
指定者:
接口 ResultSet 中的 updateRef
抛出:
SQLException

updateRef

public void updateRef(String columnLabel,
                      Ref x)
               throws SQLException
指定者:
接口 ResultSet 中的 updateRef
抛出:
SQLException

updateBlob

public void updateBlob(int columnIndex,
                       Blob x)
                throws SQLException
指定者:
接口 ResultSet 中的 updateBlob
抛出:
SQLException

updateBlob

public void updateBlob(String columnLabel,
                       Blob x)
                throws SQLException
指定者:
接口 ResultSet 中的 updateBlob
抛出:
SQLException

updateClob

public void updateClob(int columnIndex,
                       Clob x)
                throws SQLException
指定者:
接口 ResultSet 中的 updateClob
抛出:
SQLException

updateClob

public void updateClob(String columnLabel,
                       Clob x)
                throws SQLException
指定者:
接口 ResultSet 中的 updateClob
抛出:
SQLException

updateArray

public void updateArray(int columnIndex,
                        Array x)
                 throws SQLException
指定者:
接口 ResultSet 中的 updateArray
抛出:
SQLException

updateArray

public void updateArray(String columnLabel,
                        Array x)
                 throws SQLException
指定者:
接口 ResultSet 中的 updateArray
抛出:
SQLException

getRowId

public RowId getRowId(int columnIndex)
               throws SQLException
指定者:
接口 ResultSet 中的 getRowId
抛出:
SQLException

getRowId

public RowId getRowId(String columnLabel)
               throws SQLException
指定者:
接口 ResultSet 中的 getRowId
抛出:
SQLException

updateRowId

public void updateRowId(int columnIndex,
                        RowId x)
                 throws SQLException
指定者:
接口 ResultSet 中的 updateRowId
抛出:
SQLException

updateRowId

public void updateRowId(String columnLabel,
                        RowId x)
                 throws SQLException
指定者:
接口 ResultSet 中的 updateRowId
抛出:
SQLException

getHoldability

public int getHoldability()
                   throws SQLException
指定者:
接口 ResultSet 中的 getHoldability
抛出:
SQLException

getString

public String getString(int columnIndex)
                 throws SQLException
指定者:
接口 ResultSet 中的 getString
抛出:
SQLException

getBoolean

public boolean getBoolean(int columnIndex)
                   throws SQLException
指定者:
接口 ResultSet 中的 getBoolean
抛出:
SQLException

getByte

public byte getByte(int columnIndex)
             throws SQLException
指定者:
接口 ResultSet 中的 getByte
抛出:
SQLException

getShort

public short getShort(int columnIndex)
               throws SQLException
指定者:
接口 ResultSet 中的 getShort
抛出:
SQLException

getInt

public int getInt(int columnIndex)
           throws SQLException
指定者:
接口 ResultSet 中的 getInt
抛出:
SQLException

getLong

public long getLong(int columnIndex)
             throws SQLException
指定者:
接口 ResultSet 中的 getLong
抛出:
SQLException

getFloat

public float getFloat(int columnIndex)
               throws SQLException
指定者:
接口 ResultSet 中的 getFloat
抛出:
SQLException

getDouble

public double getDouble(int columnIndex)
                 throws SQLException
指定者:
接口 ResultSet 中的 getDouble
抛出:
SQLException

getBigDecimal

public BigDecimal getBigDecimal(int columnIndex,
                                int scale)
                         throws SQLException
指定者:
接口 ResultSet 中的 getBigDecimal
抛出:
SQLException

getBytes

public byte[] getBytes(int columnIndex)
                throws SQLException
指定者:
接口 ResultSet 中的 getBytes
抛出:
SQLException

getDate

public Date getDate(int columnIndex)
             throws SQLException
指定者:
接口 ResultSet 中的 getDate
抛出:
SQLException

getTime

public Time getTime(int columnIndex)
             throws SQLException
指定者:
接口 ResultSet 中的 getTime
抛出:
SQLException

getTimestamp

public Timestamp getTimestamp(int columnIndex)
                       throws SQLException
指定者:
接口 ResultSet 中的 getTimestamp
抛出:
SQLException

getAsciiStream

public InputStream getAsciiStream(int columnIndex)
                           throws SQLException
指定者:
接口 ResultSet 中的 getAsciiStream
抛出:
SQLException

getUnicodeStream

public InputStream getUnicodeStream(int columnIndex)
                             throws SQLException
指定者:
接口 ResultSet 中的 getUnicodeStream
抛出:
SQLException

getBinaryStream

public InputStream getBinaryStream(int columnIndex)
                            throws SQLException
指定者:
接口 ResultSet 中的 getBinaryStream
抛出:
SQLException

getString

public String getString(String columnLabel)
                 throws SQLException
指定者:
接口 ResultSet 中的 getString
抛出:
SQLException

getBoolean

public boolean getBoolean(String columnLabel)
                   throws SQLException
指定者:
接口 ResultSet 中的 getBoolean
抛出:
SQLException

getByte

public byte getByte(String columnLabel)
             throws SQLException
指定者:
接口 ResultSet 中的 getByte
抛出:
SQLException

getShort

public short getShort(String columnLabel)
               throws SQLException
指定者:
接口 ResultSet 中的 getShort
抛出:
SQLException

getInt

public int getInt(String columnLabel)
           throws SQLException
指定者:
接口 ResultSet 中的 getInt
抛出:
SQLException

getLong

public long getLong(String columnLabel)
             throws SQLException
指定者:
接口 ResultSet 中的 getLong
抛出:
SQLException

getFloat

public float getFloat(String columnLabel)
               throws SQLException
指定者:
接口 ResultSet 中的 getFloat
抛出:
SQLException

getDouble

public double getDouble(String columnLabel)
                 throws SQLException
指定者:
接口 ResultSet 中的 getDouble
抛出:
SQLException

getBigDecimal

public BigDecimal getBigDecimal(String columnLabel,
                                int scale)
                         throws SQLException
指定者:
接口 ResultSet 中的 getBigDecimal
抛出:
SQLException

getBytes

public byte[] getBytes(String columnLabel)
                throws SQLException
指定者:
接口 ResultSet 中的 getBytes
抛出:
SQLException

getDate

public Date getDate(String columnLabel)
             throws SQLException
指定者:
接口 ResultSet 中的 getDate
抛出:
SQLException

getTime

public Time getTime(String columnLabel)
             throws SQLException
指定者:
接口 ResultSet 中的 getTime
抛出:
SQLException

getTimestamp

public Timestamp getTimestamp(String columnLabel)
                       throws SQLException
指定者:
接口 ResultSet 中的 getTimestamp
抛出:
SQLException

getAsciiStream

public InputStream getAsciiStream(String columnLabel)
                           throws SQLException
指定者:
接口 ResultSet 中的 getAsciiStream
抛出:
SQLException

getUnicodeStream

public InputStream getUnicodeStream(String columnLabel)
                             throws SQLException
指定者:
接口 ResultSet 中的 getUnicodeStream
抛出:
SQLException

getBinaryStream

public InputStream getBinaryStream(String columnLabel)
                            throws SQLException
指定者:
接口 ResultSet 中的 getBinaryStream
抛出:
SQLException

isBeforeFirst

public boolean isBeforeFirst()
                      throws SQLException
指定者:
接口 ResultSet 中的 isBeforeFirst
抛出:
SQLException

isAfterLast

public boolean isAfterLast()
                    throws SQLException
指定者:
接口 ResultSet 中的 isAfterLast
抛出:
SQLException

isFirst

public boolean isFirst()
                throws SQLException
指定者:
接口 ResultSet 中的 isFirst
抛出:
SQLException

isLast

public boolean isLast()
               throws SQLException
指定者:
接口 ResultSet 中的 isLast
抛出:
SQLException

beforeFirst

public void beforeFirst()
                 throws SQLException
指定者:
接口 ResultSet 中的 beforeFirst
抛出:
SQLException

afterLast

public void afterLast()
               throws SQLException
指定者:
接口 ResultSet 中的 afterLast
抛出:
SQLException

first

public boolean first()
              throws SQLException
指定者:
接口 ResultSet 中的 first
抛出:
SQLException

last

public boolean last()
             throws SQLException
指定者:
接口 ResultSet 中的 last
抛出:
SQLException

getRow

public int getRow()
           throws SQLException
指定者:
接口 ResultSet 中的 getRow
抛出:
SQLException

absolute

public boolean absolute(int row)
                 throws SQLException
指定者:
接口 ResultSet 中的 absolute
抛出:
SQLException

relative

public boolean relative(int rows)
                 throws SQLException
指定者:
接口 ResultSet 中的 relative
抛出:
SQLException

getType

public int getType()
            throws SQLException
指定者:
接口 ResultSet 中的 getType
抛出:
SQLException

getConcurrency

public int getConcurrency()
                   throws SQLException
指定者:
接口 ResultSet 中的 getConcurrency
抛出:
SQLException

getMetaData

public ResultSetMetaData getMetaData()
                              throws SQLException
指定者:
接口 ResultSet 中的 getMetaData
抛出:
SQLException


Copyright © 2013-2014 Alibaba Group. All Rights Reserved.