DbParameter::Value Property
Gets or sets the value of the parameter.
Assembly: System.Data (in System.Data.dll)
public: property Object^ Value { virtual Object^ get() abstract; virtual void set(Object^ value) abstract; }
Property Value
Type: System::Object^An Object that is the value of the parameter. The default value is null.
Implements
IDataParameter::ValueFor input parameters, the value is bound to the DbCommand that is sent to the server. For output and return value parameters, the value is set on completion of the DbCommand and after the DbDataReader is closed.
When you send a null parameter value to the server, you must specify DBNull, not null. The null value in the system is an empty object that has no value. DBNull is used to represent null values.
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 tries to convert any type of value if it supports the IConvertible interface. Conversion errors may result if the specified type is not compatible with the value.
The DbType property can be inferred by setting the Value.
The Value property is overwritten by DbDataAdapter.Update.
Available since 10
.NET Framework
Available since 2.0