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

ToString method Next Page

ULParameterCollection class


Represents all parameters to a ULCommand.

Syntax

Visual Basic

NotInheritable Public Class ULParameterCollection

C#

public sealed class ULParameterCollection

Remarks

All parameters in the collection are treated as positional parameters and are specified in the same order as the question mark placeholders in the ULCommand.CommandText. For example, the first parameter in the collection corresponds to the first question mark in the SQL statement, the second parameter in the collection corresponds to the second question mark in the SQL statement, and so on. There must be at least as many question marks in the ULCommand.CommandText as there are parameters in the collection. Nulls are substituted for missing parameters.

There is no constructor for ULParameterCollection. You obtain a ULParameterCollection from the ULCommand.Parameters.

Implements: System.Data.IDataParameterCollection

See also

ULParameterCollection members
Count property
Item property
Item property
Add method
Add method
Add method
Add method
Add method
Add method
Clear method
Contains method
Contains method
CopyTo method
GetEnumerator method
IndexOf method
IndexOf method
Insert method
Remove method
RemoveAt method
RemoveAt method