[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Copy the data for the current record in a memory buffer
Source position: db.pas line 1693
public function TDataSet.GetCurrentRecord( |
Buffer: TRecordBuffer |
):Boolean; virtual; |
Buffer |
|
Buffer to which record data must be copied. |
True if the data for the current record has been copied successfully.
GetCurrentRecord can be overridden by TDataset descendents to copy the data for the current record to Buffer. Buffermust point to a memory area, large enough to contain the data for the record. If the data is copied successfully to the buffer, the function returns True. The TDataset implementation is empty, and returns False.
|
Currently active memory buffer |