Value property

Specifies the value of the parameter.

Syntax
Visual Basic
Public Overrides Property Value As Object
C#
public override object Value { get; set; }
Property value

A System.Object that specifies the value of the parameter.

Remarks

The value is sent as-is to the data provider without any type conversion or mapping. When the command is executed, the command attempts to convert the value to the required type, signaling a ULException with ULSQLCode.SQLE_CONVERSION_ERROR if it cannot convert the value.

See also