Implements a virtual function to retrieve the current record in a buffer.
function GetCurrentRecord(Buffer: PChar): Boolean; virtual;
Description
This function always returns False, indicating failure. TDataSet descendants override this method to retrieve the value of the current record. If Buffer is successfully filled with the value of the current record, GetCurrentRecord should return True.
|
|