[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Store the data for a field
Source position: db.pas line 1666
public procedure TDataSet.SetFieldData( |
Field: TField; |
Buffer: Pointer |
); virtual; overload; |
Field: TField; |
Buffer: Pointer; |
NativeFormat: Boolean |
); virtual; overload; |
Field |
|
Field to copy data for |
Field |
|
Field to copy data for |
NativeFormat |
|
Is the data in native format |
SetFieldData should copy the data from field Field, stored in the memory pointed to by Buffer to the dataset memory buffer for the current record. This function is not intended for use by end-user applications, and should be used only in descendent classes, where it can be overridden. The NativeFormat determines whether the data is in native format (e.g. whether the date/time values are in TDateTime format).
|
Formatted field value |