1.0

Table Of Contents
on page 417 before turning on auto-commit when there is a transaction outstanding, so that all prior work is
completed before the return to auto-commit mode.
Example
sqlf(PEERCLIENT)> AUTOCOMMIT off;
sqlf(PEERCLIENT)> insert into airlines VALUES ('NA', 'New
Airline', 0.20, 0.07, 0.6, 1.7, 20, 10, 5);
1 row inserted/updated/deleted
sqlf(PEERCLIENT)> commit;
before first
Moves the cursor before the rst row, then fetches the row.
Syntax
BEFORE FIRST
int Identifier
Description
Moves the cursor before the rst row, then fetches the row. If there is no current row, it returns the message No
current row.
The cursor must have been created with the get scroll insensitive cursor on page 408 command.
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)> before first scrollCursor;
No current row
close
Closes the named cursor.
Syntax
CLOSE
Identifier
vFabric SQLFire User's Guide400
vFabric SQLFire Reference