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

SQL Anywhere 10.0.1 » UltraLite - .NET Programming » UltraLite .NET 1.0 API Reference » ULParameter class

Offset property Next Page

ParameterName property


Specifies the name of the parameter.

Syntax

Visual Basic

NotOverridable Public Property ParameterName As String _
Implements IDataParameter.ParameterName

C#

public string ParameterName {get;set;}

Property value

A string representing the name of the parameter, or an empty string ("") for unnamed parameters. Specifying a null reference (Nothing in Visual Basic) results in an empty string being used.

Remarks

In UltraLite.NET, parameter names are not used by ULCommand. All parameters are treated as positional parameters and are used by a command in the order that they were added.

Implements

[external link] IDataParameter.ParameterName

See also