Lines Matching refs:to

3  * Licensed to the Apache Software Foundation (ASF) under one
7 * to you under the Apache License, Version 2.0 (the
13 * Unless required by applicable law or agreed to in writing,
47 A ResultSet maintains a cursor pointing to its current row of
49 The 'next' method moves the cursor to the next row.
61 first call to next makes the first row the current row; the
65 to the method
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.
127 /** moves the cursor to the front of the result set, just before the
135 /** moves the cursor to the end of the result set, just after the last
143 /** moves the cursor to the first row in the result set.
152 /** moves the cursor to the last row in the result set.
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
181 If the given row number is negative, the cursor moves to
182 an absolute row position with respect to
188 indicates the next-to-last row, and so on.
191 An attempt to position the cursor beyond the first/last row in
213 Attempting to move beyond the first/last row in the result set
224 because is makes sense to call
230 how many rows should be moved relative to the current row
239 /** moves the cursor to the previous row in the result set.
247 because it makes sense to call
263 method provides a way for an application to
264 explicitly tell the SDBC driver to refetch a row(s) from the
265 database. An application may want to call
267 when caching or prefetching is being done by the SDBC driver to
271 All values are refetched subject to the transaction isolation
278 , then the updates made to the row are lost.
309 a visible "hole" in a result set. This method can be used to