using System;
using Cpp2IlInjected;
namespace System.Data
{
/// Specifies the action to take when adding data to the and the required or is missing.
// Token: 0x0200006D RID: 109
[Token(Token = "0x200006D")]
public enum MissingSchemaAction
{
/// Adds the necessary columns to complete the schema.
// Token: 0x0400024E RID: 590
[Token(Token = "0x400024E")]
Add = 1,
/// Ignores the extra columns.
// Token: 0x0400024F RID: 591
[Token(Token = "0x400024F")]
Ignore,
/// An is generated if the specified column mapping is missing.
// Token: 0x04000250 RID: 592
[Token(Token = "0x4000250")]
Error,
/// Adds the necessary columns and primary key information to complete the schema. For more information about how primary key information is added to a , see .To function properly with the .NET Framework Data Provider for OLE DB, 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 . This ensures that incoming records that match existing records are updated instead of appended. When using , 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. For more information, see SET FMTONLY (Transact-SQL).
// Token: 0x04000251 RID: 593
[Token(Token = "0x4000251")]
AddWithKey
}
}