Setting the Cursors.


Default Cursor – 0
ODBC Cursor (Client side) – 1
ServerSide Cursors (More Network traffic) - 2

Showing Answers 1 - 3 of 3 Answers

Methods to set the cursor position:
•positionCursorAfterLast() - Set cursor to after the last record. This method exists so Java™ programs can use the readPrevious() method to access records in the file.
•positionCursorBeforeFirst() - Set cursor to before the first record. This method exists so Java programs can use the readNext() method to access records in the file.
•positionCursorToFirst() - Set the cursor to the first record.
•positionCursorToLast() - Set the cursor to the last record.
•positionCursorToNext() - Move the cursor to the next record.
•positionCursorToPrevious() - Move the cursor to the previous record.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions