Documentation for this section has not yet been entered.
A default value is the value that is automatically assigned to the column when a System.Data.DataRow is created (for example, the date and time when the System.Data.DataRow was created.
When DataColumn.AutoIncrement is set to true, there can be no default value.
You can create a new row using the DataRow.ItemArray property of the System.Data.DataRow class and passing the method an array of values. This is a potential problem for a column with a default value because its value is generated automatically. To use the DataRow.ItemArray property with such a column, place null in the column's position in the array. For more information, see the DataRow.ItemArray property.