1.1.1

Table Of Contents
Syntax
HELP
Description
Prints out a brief list of the sqlf commands.
last
Moves the cursor to the last row in the ResultSet, then fetches the row.
Syntax
LAST
Identifier
Description
After the cursor is created with the get scroll insensitive cursor on page 446 command, moves the cursor to the
last row in the ResultSet, then fetches the row. It displays a banner and the values of the row.
Example
sqlf(PEERCLIENT)> get scroll insensitive with nohold cursor
scrollCursor as 'select * from firsttable order by id';
sqlf(PEERCLIENT)> absolute 3 scrollCursor;
ID |NAME
------------------------
30 |THIRTY
sqlf(PEERCLIENT)> first scrollCursor;
ID |NAME
------------------------
10 |TEN
sqlf(PEERCLIENT)> next scrollCursor;
ID |NAME
------------------------
20 |TWENTY
sqlf(PEERCLIENT)> last scrollCursor;
ID |NAME
------------------------
50 |Fifty
LocalizedDisplay
Species whether to display locale-sensitive data (such as dates) in the native format for the sqlf locale.
449
sqlf Interactive Commands