다음을 통해 공유


SQLiteRawStatement.BindInt(Int32, Int32) Method

Definition

Bind an int to a parameter.

[Android.Runtime.Register("bindInt", "(II)V", "", ApiSince=35)]
public void BindInt (int parameterIndex, int value);
[<Android.Runtime.Register("bindInt", "(II)V", "", ApiSince=35)>]
member this.BindInt : int * int -> unit

Parameters

parameterIndex
Int32

The index of the parameter in the query. It is one-based.

value
Int32
Attributes

Remarks

Bind an int to a parameter. Parameter indices start at 1. The function throws if the parameter index is out of bounds.

Java documentation for android.database.sqlite.SQLiteRawStatement.bindInt(int, int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to