This documentation is archived and is not being maintained.
MissingSchemaAction Enumeration
Visual Studio 2010
Specifies the action to take when adding data to the DataSet and the required DataTable or DataColumn is missing.
Assembly: System.Data (in System.Data.dll)
| Member name | Description | |
|---|---|---|
![]() | Add | Adds the necessary columns to complete the schema. |
![]() | Ignore | Ignores the extra columns. |
![]() | Error | An InvalidOperationException is generated if the specified column mapping is missing. |
![]() | AddWithKey | Adds the necessary columns and primary key information to complete the schema. For more information about how primary key information is added to a DataTable, see FillSchema.To function properly with the .NET Framework Data Provider for OLE DB, AddWithKey requires that the native OLE DB provider obtains necessary primary key information by setting the DBPROP_UNIQUEROWS property, and then determines which columns are primary key columns by examining DBCOLUMN_KEYCOLUMN in the IColumnsRowset. As an alternative, the user may explicitly set the primary key constraints on each DataTable. This ensures that incoming records that match existing records are updated instead of appended. When using AddWithKey, the .NET Framework Data Provider for SQL Server appends a FOR BROWSE clause to the statement being executed. The user should be aware of potential side effects, such as interference with the use of SET FMTONLY ON statements. See SQL Server Books Online for more information. |
The MissingSchemaAction values are used whenever an action is taken that could change the schema of the DataSet.
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.
Show:
