'Declaration
Public Overrides NotOverridable Property Value As Object
public override object Value {get; set;}
public read-write property Value: TObject; override;
public override function get,set Value : Object
'Declaration
Public Overrides NotOverridable Property Value As Object
public override object Value {get; set;}
public read-write property Value: TObject; override;
public override function get,set Value : Object
When sending a null parameter value to the server, the user must specify System.DBNull, not null. A null value in the system is an empty object that has no value. System.DBNull is used to represent null values. If the parameter is used to call a stored procedure with parameters that have default values, setting Value to null causes the default value to be used.
If the application specifies the database type, the bound value is converted to that type when the provider sends the data to the server. The provider attempts to convert any type of value if it supports the System.IConvertible interface. Conversion errors may result if the specified type is not compatible with the value.
The Value property is overwritten by the System.Data.Common.DbDataAdapter.Update(System.Data.DataSet) method.
.NET Framework
Version 2.0 or later