Gets or sets the value of the parameter.
[Visual Basic] Overridable Public Property Value As Object [C#] public object Value {virtual get; virtual set;} [C++] public: __property virtual Object* get_Value(); public: __property virtual void set_Value(Object*); [JScript] public function get Value() : Object; public function set Value(Object);
An Object that is the value of the parameter.
This property is overwritten by Update. If IsInput is true and this SQLParameter has a DataSetColumn, the Value is queried by the Update method. if IsOuput is true and this SQLParameter has a DataSetColumn, use Convert.DBNull to pass a SQL NULL or use null to pass a SQL DEFAULT.
SQLParameter Class | SQLParameter Members | System.Data.SQL Namespace