SQLGetRecord() function
- Last UpdatedJun 17, 2024
- 1 minute read
The SQLGetRecord() function retrieves the record specified by the RecordNumber argument from the current selection buffer.
Category
SQL
Syntax
[ResultCode=]SQLGetRecord(ConnectionID, RecordNumber);
Arguments
ConnectionID
Name of a memory integer tag that holds the number (ID) assigned by the SQLConnect() function to each database connection.
RecordNumber
Actual record number to retrieve.
Example
ResultCode=SQLGetRecord(ConnectionID,3);
See Also
SQLConnect()