SqliteParameterCollection.Insert Method

Definition

Overloads

Insert(Int32, SqliteParameter)

Inserts a parameter into the collection at the specified index.

Insert(Int32, Object)

Inserts a parameter into the collection at the specified index.

Insert(Int32, SqliteParameter)

Inserts a parameter into the collection at the specified index.

public virtual void Insert (int index, Microsoft.Data.Sqlite.SqliteParameter value);
override this.Insert : int * Microsoft.Data.Sqlite.SqliteParameter -> unit
Public Overridable Sub Insert (index As Integer, value As SqliteParameter)

Parameters

index
Int32

The zero-based index at which the parameter should be inserted.

value
SqliteParameter

The parameter to insert.

Applies to

Insert(Int32, Object)

Inserts a parameter into the collection at the specified index.

public override void Insert (int index, object value);
override this.Insert : int * obj -> unit
Public Overrides Sub Insert (index As Integer, value As Object)

Parameters

index
Int32

The zero-based index at which the parameter should be inserted.

value
Object

The parameter to insert. Must be a SqliteParameter.

Applies to