SqlParameter.Value Property
Gets or sets the value of the parameter.
Assembly: System.Data (in System.Data.dll)
[TypeConverterAttribute(typeof(StringConverter))] public override Object Value { get; set; }
Property Value
Type: System.ObjectAn Object that is the value of the parameter. The default value is null.
Implements
IDataParameter.ValueFor input parameters, the value is bound to the SqlCommand that is sent to the server. For output and return value parameters, the value is set on completion of the SqlCommand and after the SqlDataReader is closed.
This property can be set to null or Value. Use Value to send a NULL value as the value of the parameter. Use null or do not set Value to use the default value for the parameter.
An exception is thrown if non-Unicode XML data is passed as a string.
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.
Both the DbType and SqlDbType properties can be inferred by setting the Value.
The Value property is overwritten by SqlDataAdapter.UpdateCommand.
For information about streaming, see SqlClient Streaming Support.
The following example creates a SqlParameter and sets some of its properties.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.