SourceColumnNullMapping Property

MySQL Connector.Net

Collapse image Expand Image Copy image CopyHover image
Sets or gets a value which indicates whether the source column is nullable. This allows DbCommandBuilder to correctly generate Update statements for nullable columns.

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.8.4.0

Syntax

C#
public override bool SourceColumnNullMapping { get; set; }
Visual Basic
Public Overrides Property SourceColumnNullMapping As Boolean
	Get
	Set
Visual C++
public:
virtual property bool SourceColumnNullMapping {
	bool get () override;
	void set (bool value) override;
}

See Also