Harbour Reference Guide

 

DBSKIP()

Moves the record pointer in the selected work area.

Syntax

DBSKIP([<nRecords>]) --> NIL

Arguments

<nRecords> Numbers of records to move record pointer.

Returns

DBSKIP() always returns NIL.

Description

This function moves the record pointer <nRecords> in the selected or aliased work area.The default value for <nRecords> will be 1. A DBSKIP(0) will flush and refresh the internal database bufer and make any changes made to the record visible without moving the record pointer in either direction.
Examples
      FUNCTION Main()
      USE Tests NEW
      DBGOTOP()
      WHILE !EOF()
        ? Tests->Id,Tests->Name
        DBSKIP()
      ENDDO
      USE
      RETURN NIL
Status

Ready

Compliance

This function is CA-CLIPPER compatible

Files

Library is rdd

See Also

 




[Source Forge]

Other Docs Categories

Advantage Database RDD
Array
Binary conversion
Classes
Code Block
Console input
Conversion
Conversion Tools
DOS
Data input and output
Database
Database Tools
Date
Dos Tools
Environment
Error recovery
Events
File management
GT
Harbour Tools
Internal
Low Level
Math
Misc
Miscellaneous
Nation
Object manipulation
Operating System Specific
Parameter Checks
String Tools
Strings
TBrowse Method
TBrowse class
Terminal
Time
Utility
Variable Management

 

Last updated on 2001/07/30