DataTable::LoadDataRow Method (array<Object>, Boolean)
Finds and updates a specific row. If no matching row is found, a new row is created using the given values.
Assembly: System.Data (in System.Data.dll)
Parameters
- values
- Type: array<System::Object>
An array of values used to create the new row.
- fAcceptChanges
- Type: System::Boolean
true to accept changes; otherwise false.
| Exception | Condition |
|---|---|
| ArgumentException | The array is larger than the number of columns in the table. |
| InvalidCastException | A value doesn't match its respective column type. |
| ConstraintException | Adding the row invalidates a constraint. |
| NoNullAllowedException | Attempting to put a null in a column where AllowDBNull is false. |
The LoadDataRow method takes an array of values and finds the matching value(s) in the primary key column(s).
If a column has a default value, pass a null value in the array to set the default value for that column. Similarly, if a column has its AutoIncrement property set to true, pass a null value in the array to set the automatically generated value for the row.
If the fAcceptChanges parameter is true or not specified, the new data is added and then AcceptChanges is called to accept all changes in the DataTable; if the argument is false, newly added rows are marked as insertions, and changes to existing rows are marked as modifications.
Exceptions can also occur during either a ColumnChanging or RowChanging event. If an exception occurs, the row is not added to the table.
Use LoadDataRow in conjunction with BeginLoadData and EndLoadData.
The following example uses the LoadDataRow method to attempt to find a row. If no such row is found, the values are used to create a new row.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.