
|
AcceptChanges
|
Commits all the changes made to this table since the last time AcceptChanges was called.
|

|
BeginInit
|
Begins the initialization of a TClrDataTable that is used on a form or used by another component. The initialization occurs at run time.
|

|
BeginLoadData
|
Turns off notifications, index maintenance, and constraints while loading data.
|

|
Clear
|
Clears the TClrDataTable of all data.
|

|
Clone
|
Clones the structure of the TClrDataTable, including all TClrDataTable schemas and constraints.
|

|
Compute(String,String)
|
Computes the given expression on the current rows that pass the filter criteria.
|

|
Copy
|
Copies both the structure and data for this TClrDataTable.
|

|
EndInit
|
Ends the initialization of a TClrDataTable that is used on a form or used by another component. The initialization occurs at run time.
|

|
EndLoadData
|
Turns on notifications, index maintenance, and constraints after loading data.
|

|
Find(Olevariant)
|
Finds a row in the DataView by the specified sort key value. Overloaded.
|

|
Find(_ObjectArray)
|
Finds a row in the DataView by the specified sort key values. Overloaded.
|

|
FindRows(Olevariant)
|
Returns an array of DataRowView objects whose columns match the specified sort key value.
|

|
FindRows(_ObjectArray)
|
Returns an array of DataRowView objects whose columns match the specified sort key value.
|

|
GetChanges
|
Gets a copy of the TClrDataTable that contains all changes made to it since it was loaded or AcceptChanges was last called.
|

|
GetChanges(TDataRowState)
|
Gets a copy of the TClrDataTable containing all changes made to it since it was last loaded, or since AcceptChanges was called, filtered by TDataRowState.
|

|
GetErrors
|
Gets an array of DataRow objects that contain errors.
|

|
ImportRow(_DataRow)
|
Copies a DataRow into a TClrDataTable, preserving any property settings, as well as original and current values.
|

|
Load(TDbDataAdapter)
|
Fills a TClrDataTable with values from a data source using the supplied TDbDataAdapter. If the TClrDataTable already contains rows, the incoming data from the data source is merged with the existing rows.
|

|
Load(TDbDataReader)
|
Fills a TClrDataTable with values from a data source using the supplied TDbDataReader. If the TClrDataTable already contains rows, the incoming data from the data source is merged with the existing rows.
|

|
Load(TDbDataReader,TLoadOption)
|
Fills a TClrDataTable with values from a data source using the supplied TDbDataReader. If the DataTable already contains rows, the incoming data from the data source is merged with the existing rows according to the value of the loadOption parameter.
|

|
LoadDataRow(_ObjectArray,Boolean)
|
Finds and updates a specific row. If no matching row is found, a new row is created using the given values.
|

|
LoadDataRow(_ObjectArray,TLoadOption)
|
Finds and updates a specific row. If no matching row is found, a new row is created using the given values.
|

|
Merge(TClrDataTable)
|
Merge the specified TClrDataTable with the current TClrDataTable.
|

|
Merge(TClrDataTable,Boolean)
|
Merge the specified TClrDataTable with the current TClrDataTable, indicating whether to preserve changes in the current TClrDataTable.
|

|
Merge(TClrDataTable,Boolean,TMissingSchemaAction)
|
Merge the specified TClrDataTable with the current TClrDataTable, indicating whether to preserve changes and how to handle missing schema in the current TClrDataTable.
|

|
NewRow
|
Creates a new DataRow with the same schema as the table.
|

|
ReadXml(String)
|
Reads XML schema and data into the TClrDataTable from the specified file.
|

|
ReadXmlSchema(String)
|
Reads an XML schema into the TClrDataTable from the specified file.
|

|
RejectChanges
|
Rolls back all changes that have been made to the table since it was loaded, or the last time AcceptChanges was called.
|

|
Reset
|
Resets the TClrDataTable to its original state. Reset removes all data, indexes, relations, and columns of the table. If a DataSet includes a DataTable, the table will still be part of the DataSet after the table is reset.
|

|
Select
|
Gets an array of all DataRow objects.
|

|
Select(String)
|
Gets an array of all DataRow objects that match the filter criteria.
|

|
Select(String,String)
|
Gets an array of all DataRow objects that match the filter criteria, in the specified sort order.
|

|
Select(String,String,TDataViewRowState)
|
Gets an array of all DataRow objects that match the filter in the order of the sort that match the specified state.
|

|
Update(TDbDataAdapter)
|
Updates the values in the database by executing the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the TClrDataTable.
|

|
WriteXml(String)
|
Writes the current contents of the TClrDataTable as XML using the specified file.
|

|
WriteXml(String,Boolean)
|
Writes the current contents of the TClrDataTable as XML using the specified file. To save the data for the table and all its descendants, set the writeHierarchy parameter to true.
|

|
WriteXml(String,TXmlWriteMode)
|
Writes the current data, and optionally the schema, for the TClrDataTable using the specified file and TXmlWriteMode. To write the schema, set the value for the mode parameter to WriteSchema.
|

|
WriteXml(String,TXmlWriteMode,Boolean)
|
Writes the current data, and optionally the schema, for the TClrDataTable using the specified file and TXmlWriteMode. To write the schema, set the value for the mode parameter to WriteSchema. To save the data for the table and all its descendants, set the writeHierarchy parameter to true.
|

|
WriteXmlSchema(String)
|
Writes the current data structure of the TClrDataTable as an XML schema to the specified file.
|

|
WriteXmlSchema(String,Boolean)
|
Writes the current data structure of the TClrDataTable as an XML schema to the specified file. To save the schema for the table and all its descendants, set the writeHierarchy parameter to true.
|