📄 resultset.html
字号:
</TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> boolean</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#last()">last</A></B>()</CODE><BR> Moves the cursor to the last row in this <code>ResultSet</code> object.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#moveToCurrentRow()">moveToCurrentRow</A></B>()</CODE><BR> Moves the cursor to the remembered cursor position, usually the current row.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#moveToInsertRow()">moveToInsertRow</A></B>()</CODE><BR> Moves the cursor to the insert row.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> boolean</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#next()">next</A></B>()</CODE><BR> Moves the cursor down one row from its current position.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> boolean</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#previous()">previous</A></B>()</CODE><BR> Moves the cursor to the previous row in this <code>ResultSet</code> object.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#refreshRow()">refreshRow</A></B>()</CODE><BR> Refreshes the current row with its most recent value in the database.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> boolean</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#relative(int)">relative</A></B>(int rows)</CODE><BR> Moves the cursor a relative number of rows, either positive or negative.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> boolean</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#rowDeleted()">rowDeleted</A></B>()</CODE><BR> Indicates whether a row has been deleted.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> boolean</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#rowInserted()">rowInserted</A></B>()</CODE><BR> Indicates whether the current row has had an insertion.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> boolean</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#rowUpdated()">rowUpdated</A></B>()</CODE><BR> Indicates whether the current row has been updated.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#setFetchDirection(int)">setFetchDirection</A></B>(int direction)</CODE><BR> Gives a hint as to the direction in which the rows in this <code>ResultSet</code> object will be processed.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#setFetchSize(int)">setFetchSize</A></B>(int rows)</CODE><BR> Gives the JDBC driver a hint as to the number of rows that should be fetched from the database when more rows are needed for this <code>ResultSet</code> object.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#updateAsciiStream(int, java.io.InputStream, int)">updateAsciiStream</A></B>(int columnIndex, <A HREF="../../java/io/InputStream.html">InputStream</A> x, int length)</CODE><BR> Updates the designated column with an ascii stream value.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#updateAsciiStream(java.lang.String, java.io.InputStream, int)">updateAsciiStream</A></B>(<A HREF="../../java/lang/String.html">String</A> columnName, <A HREF="../../java/io/InputStream.html">InputStream</A> x, int length)</CODE><BR> Updates the designated column with an ascii stream value.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#updateBigDecimal(int, java.math.BigDecimal)">updateBigDecimal</A></B>(int columnIndex, <A HREF="../../java/math/BigDecimal.html">BigDecimal</A> x)</CODE><BR> Updates the designated column with a <code>java.math.BigDecimal</code> value.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#updateBigDecimal(java.lang.String, java.math.BigDecimal)">updateBigDecimal</A></B>(<A HREF="../../java/lang/String.html">String</A> columnName, <A HREF="../../java/math/BigDecimal.html">BigDecimal</A> x)</CODE><BR> Updates the designated column with a <code>java.sql.BigDecimal</code> value.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#updateBinaryStream(int, java.io.InputStream, int)">updateBinaryStream</A></B>(int columnIndex, <A HREF="../../java/io/InputStream.html">InputStream</A> x, int length)</CODE><BR> Updates the designated column with a binary stream value.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#updateBinaryStream(java.lang.String, java.io.InputStream, int)">updateBinaryStream</A></B>(<A HREF="../../java/lang/String.html">String</A> columnName, <A HREF="../../java/io/InputStream.html">InputStream</A> x, int length)</CODE><BR> Updates the designated column with a binary stream value.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#updateBoolean(int, boolean)">updateBoolean</A></B>(int columnIndex, boolean x)</CODE><BR> Updates the designated column with a <code>boolean</code> value.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#updateBoolean(java.lang.String, boolean)">updateBoolean</A></B>(<A HREF="../../java/lang/String.html">String</A> columnName, boolean x)</CODE><BR> Updates the designated column with a <code>boolean</code> value.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#updateByte(int, byte)">updateByte</A></B>(int columnIndex, byte x)</CODE><BR> Updates the designated column with a <code>byte</code> value.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#updateByte(java.lang.String, byte)">updateByte</A></B>(<A HREF="../../java/lang/String.html">String</A> columnName, byte x)</CODE><BR> Updates the designated column with a <code>byte</code> value.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#updateBytes(int, byte[])">updateBytes</A></B>(int columnIndex, byte[] x)</CODE><BR> Updates the designated column with a <code>byte</code> array value.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#updateBytes(java.lang.String, byte[])">updateBytes</A></B>(<A HREF="../../java/lang/String.html">String</A> columnName, byte[] x)</CODE><BR> Updates the designated column with a <code>boolean</code> value.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#updateCharacterStream(int, java.io.Reader, int)">updateCharacterStream</A></B>(int columnIndex, <A HREF="../../java/io/Reader.html">Reader</A> x, int length)</CODE><BR> Updates the designated column with a character stream value.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#updateCharacterStream(java.lang.String, java.io.Reader, int)">updateCharacterStream</A></B>(<A HREF="../../java/lang/String.html">String</A> columnName, <A HREF="../../java/io/Reader.html">Reader</A> reader, int length)</CODE><BR> Updates the designated column with a character stream value.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#updateDate(int, java.sql.Date)">updateDate</A></B>(int columnIndex, <A HREF="../../java/sql/Date.html">Date</A> x)</CODE><BR> Updates the designated column with a <code>java.sql.Date</code> value.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE> void</CODE></FONT></TD><TD><CODE><B><A HREF="../../java/sql/ResultSet.html#updateDate(java.lang.String, java.sql.Date)">updateDate</A></B>(<A HREF="../../java/lang/String.html">String</A> columnName, <A HREF="../../java/sql/Date.html">Date</A> x)</CODE><BR>  
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -