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

SQL Anywhere 11.0.1 » SQL Anywhere Server - Programming » SQL Anywhere Data Access APIs » SQL Anywhere .NET 2.0 API reference » iAnywhere.Data.SQLAnywhere namespace (.NET 2.0) » SAParameterCollection class

 

Insert method

Inserts an SAParameter object in the collection at the specified index.

Syntax
Visual Basic

Public Overrides Sub Insert( _
   ByVal index As Integer, _
   ByVal value As Object _
)
C#

public override void Insert(
   int index,
   object value
);
Parameters
  • index   The zero-based index where the parameter is to be inserted within the collection.

  • value   The SAParameter object to add to the collection.

See also