SQLiteProgram.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 value to this statement.
[Android.Runtime.Register("bindLong", "(IJ)V", "GetBindLong_IJHandler")]
public virtual void BindLong (int index, long value);
[<Android.Runtime.Register("bindLong", "(IJ)V", "GetBindLong_IJHandler")>]
abstract member BindLong : int * int64 -> unit
override this.BindLong : int * int64 -> unit
Parameters
- index
- Int32
The 1-based index to the parameter to bind
- value
- Int64
The value to bind
- Attributes
Remarks
Bind a long value to this statement. The value remains bound until #clearBindings
is called. addToBindArgs
Java documentation for android.database.sqlite.SQLiteProgram.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.