Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.0 » UltraLite - .NET Programming » UltraLite .NET 2.0 API Reference » ULParameter class

 

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