Mimer SQL Data Provider
Value Property




Mimer.Data.Client Namespace > MimerParameter Class : Value Property
Gets or sets the value of the parameter.
Syntax
'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
public: __property Object* get_Value() override;
public: __property void set_Value( 
   Object* value
) override;

Property Value

An System.Object that is the value of the parameter. The default value is null.
Remarks
For input parameters, the value is bound to the MimerCommand that is sent to the server. For output and return-value parameters, the value is set on completion of the MimerCommand and after the MimerDataReader is closed.

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.

Requirements

.NET Framework
Version 2.0 or later

See Also

Reference

MimerParameter Class
MimerParameter Members