SQLiteRawStatement.BindLong(Int32, Int64) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Bind a long to the parameter.
[Android.Runtime.Register("bindLong", "(IJ)V", "", ApiSince=35)]
public void BindLong (int parameterIndex, long value);
[<Android.Runtime.Register("bindLong", "(IJ)V", "", ApiSince=35)>]
member this.BindLong : int * int64 -> unit
Parameters
- parameterIndex
- Int32
- value
- Int64
The value to be bound to the parameter.
- Attributes
Remarks
Bind a long to the parameter. Parameter indices start at 1. The function throws if the parameter index is out of bounds.
Java documentation for android.database.sqlite.SQLiteRawStatement.bindLong(int, long)
.
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.