Lines Matching refs:row

47 	A ResultSet maintains a cursor pointing to its current row of
48 data. Initially the cursor is positioned before the first row.
49 The 'next' method moves the cursor to the next row.
56 /** moves the cursor down one row from its current position.
60 A ResultSet cursor is initially positioned before the first row; the
61 first call to next makes the first row the current row; the
62 second call makes the second row the current row, and so on.
64 <p>If an input stream is open for the current row, a call
68 The ResultSet's warning chain is cleared when a new row is read.
78 /** indicates whether the cursor is before the first row in the result
88 /** indicates whether the cursor is after the last row in the result
98 /** indicates whether the cursor is on the first row of the result set.
107 /** indicates whether the cursor is on the last row of the result set.
116 may be expensive because the SDBC driver might need to fetch ahead one row in order
117 to determine whether the current row is the last row in the result set.
128 first row. Has no effect if the result set contains no rows.
136 row. Has no effect if the result set contains no rows.
143 /** moves the cursor to the first row in the result set.
152 /** moves the cursor to the last row in the result set.
161 /** retrieves the current row number. The first row is number 1, the
171 /** moves the cursor to the given row number in the result set.
175 If the row number is positive, the cursor moves to
176 the given row number with respect to the
177 beginning of the result set. The first row is row 1, the second
178 is row 2, and so on.
181 If the given row number is negative, the cursor moves to
182 an absolute row position with respect to
186 cursor on the last row,
188 indicates the next-to-last row, and so on.
191 An attempt to position the cursor beyond the first/last row in
193 row, respectively.
206 boolean absolute([in] long row ) raises (SQLException);
213 Attempting to move beyond the first/last row in the result set
215 the first/last row. Calling
226 when there is no current row, for example, when the cursor is positioned before
227 the first row or after the last row of the result set.
230 how many rows should be moved relative to the current row
239 /** moves the cursor to the previous row in the result set.
249 when there is no current row.
259 /** refreshes the current row with its most recent value in
260 the database. Cannot be called when on the insert row.
264 explicitly tell the SDBC driver to refetch a row(s) from the
268 fetch the latest value of a row from the database. The SDBC driver
278 , then the updates made to the row are lost.
288 /** indicates whether the current row has been updated. The value returned
298 /** indicates whether the current row has had an insertion. The value returned
308 /** indicates whether a row has been deleted. A deleted row may leave