SqliteParameterCollection.Insert 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Insert(Int32, SqliteParameter) |
將參數插入集合中指定的索引處。 |
Insert(Int32, Object) |
將參數插入集合中指定的索引處。 |
Insert(Int32, SqliteParameter)
將參數插入集合中指定的索引處。
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)
參數
- index
- Int32
應該插入參數之以零起始的索引。
- value
- SqliteParameter
要插入的參數。
適用於
Insert(Int32, Object)
將參數插入集合中指定的索引處。
public override void Insert (int index, object value);
override this.Insert : int * obj -> unit
Public Overrides Sub Insert (index As Integer, value As Object)
參數
- index
- Int32
應該插入參數之以零起始的索引。
- value
- Object
要插入的參數。 必須是 SqliteParameter 。