DataTable.ImportRow Method (DataRow)
Copies a DataRow into a DataTable, preserving any property settings, as well as original and current values.
Syntax;
public void ImportRow(
DataRow row
)
Parameters
row
Type: System.Data.DataRow
The DataRow to be imported.
Remarks
- Calling NewRow adds a row to the table using the existing table schema, but with default values for the row, and sets the DataRowState to Detached. Calling ImportRow preserves the existing DataRowState along with other values in the row.If the DataRow that is passed as a parameter is in a detached state, it is ignored, and no exception is thrown.
- The new row will be added to the end of the data table.
- If the new row violates a Constraint it won’t be added to the data table.
- You can get the index of the new row with as DataTable.Rows.Find and DataTable.Rows.IndexOf. See DataRowCollection and Rows for more information.
Conversion Conversion Emoticon Emoticon