DbGoTop Function |
Namespace: XSharp.RT
Tip |
---|
Logical records: DBGoTop() operates on logical records. If the work area has an active order list, DBGoTop() moves to the first record in the controlling order. If a filter is set, only records which meet the filter condition are considered. Shared mode: For a shared file, moving to a different record can cause updates to the current record to become visible to other processes. |
1DBGoTop() 2WHILE (!EOF()) 3 QOut(_FIELD->Name) 4 DBSkip() 5END