SQLiteRawStatement.BindDouble(Int32, Double) 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 double to a parameter.
[Android.Runtime.Register("bindDouble", "(ID)V", "", ApiSince=35)]
public void BindDouble (int parameterIndex, double value);
[<Android.Runtime.Register("bindDouble", "(ID)V", "", ApiSince=35)>]
member this.BindDouble : int * double -> unit
Parameters
- parameterIndex
- Int32
The index of the parameter in the query. It is one-based.
- value
- Double
The value to be bound to the parameter.
- Attributes
Remarks
Bind a double 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.bindDouble(int, double)
.
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.