SourceColumnNullMapping Property

MySQL Connector/Net

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.2.2.0

Syntax

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

See Also