ObjectDataSourceView.ConvertNullToDBNull Property

Gets or sets a value indicating whether Parameter values that are passed to an update, insert, or delete operation are automatically converted from a null reference (Nothing in Visual Basic) to the Value value.

Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)

public:
property bool ConvertNullToDBNull {
	bool get ();
	void set (bool value);
}
/** @property */
public boolean get_ConvertNullToDBNull ()

/** @property */
public void set_ConvertNullToDBNull (boolean value)

public function get ConvertNullToDBNull () : boolean

public function set ConvertNullToDBNull (value : boolean)

Not applicable.

Property Value

true, if a null reference (Nothing in Visual Basic) in Parameter objects passed to the ObjectDataSourceView is automatically converted to the DBNull.Value value; otherwise, false. The default is false.

Not converting a null reference (Nothing in Visual Basic) to the DBNull.Value value can result in errors at run time. Use the ConvertNullToDBNull property to indicate whether the Parameter values that are passed to an update, insert, or a delete operation are automatically converted from a null reference (Nothing in Visual Basic) to the DBNull.Value value. For more information, see ObjectDataSource.ConvertNullToDBNull.

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: