What it does
Represents a data set.Methods
Definition | Description |
|---|---|
AddRecord ( dataSetRecord : IDataSetRecord ) | Adds the record to the data set. |
CreateQuery () : IDataSetQuery | Creates a data set query object. |
CreateRecord () : IDataSetRecord | Creates a record that can be added to the data set later. |
DeleteRecord ( dataSetRecord : IDataSetRecord ) | SampleIf the ID is used as the primary key in the data set, and its value is set to “MyTestid”: |
GetRecords (IDataSetQuery : query) : IRecordset | Gets records that satisfy query parameters from the data set. |
GetRecordsCount (IDataSetQuery : query) : int | Gets the number of records from the data set that satisfy query parameters. |
ModifyRecord ( dataSetRecord : IDataSetRecord ) | Edits a data set record in a column with the specified primary key **. SampleIf the ID is used as the primary key in the data set, and its value is set to “MyTestid”: |
