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

ULParameter constructor Next Page

ULParameter constructor


Initializes a ULParameter object with the specified parameter name and data type. This constructor is not recommended; it is provided for compatibility with other data providers.

Syntax

Visual Basic

Overloads Public Sub New( _
ByVal parameterName As String, _
ByVal dbType As ULDbType _
)

C#

public ULParameter(
string parameterName,
ULDbType dbType
);

Parameters
Remarks

In UltraLite.NET parameters can only be used as IN parameters and all mapping information is ignored. Only the ULParameter.Value is important.

See also