OdbcParameter.SourceColumnNullMapping Property
Sets or gets a value which indicates whether the source column is nullable. This lets DbCommandBuilder correctly generate Update statements for nullable columns.
Namespace: System.Data.Odbc
Assembly: System.Data (in System.Data.dll)
SourceColumnNullMapping is used by the DbCommandBuilder to correctly generate update commands when dealing with nullable columns. Generally, use of SourceColumnNullMapping is limited to developers inheriting from DbCommandBuilder.
DbCommandBuilder uses this property to determine whether the source column is nullable, and sets this property to true if it is nullable, and false if it is not. When DbCommandBuilder is generating its Update statement, it examines the SourceColumnNullMapping for each parameter. If the property is true, DbCommandBuilder generates a WHERE clauses like the following example. In this query expression, "FieldName" represents the name of the field:
((@IsNull_FieldName = 1 AND FieldName IS NULL) OR (FieldName = @Original_FieldName))
If SourceColumnNullMapping for the field is false, DbCommandBuilder generates the following WHERE clause:
FieldName = @OriginalFieldName
In addition, @IsNull_FieldName contains 1 if the source field contains null, and 0 if it does not. This mechanism allows for a performance optimization in SQL Server, and provides for common code that works across multiple providers.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.