1.1.1

Table Of Contents
Example
sqlf(PEERCLIENT)> disconnect peerclient;
sqlf> exit;
first
Moves the cursor to the rst row in the ResultSet, then fetches the row.
Syntax
FIRST
Identifier
Description
Moves the cursor to the rst row in the ResultSet, then fetches the row. You rst create the cursor with the get
scroll insensitive cursor on page 446 command. 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
get scroll insensitive cursor
Creates a scrollable insensitive cursor with the name of the Identier.
Syntax
GET SCROLL INSENSITIVE WITH NOHOLD
CURSOR
Identifier
AS
String
vFabric SQLFire User's Guide446
vFabric SQLFire Reference