DatabaseUtils.BindObjectToProgram(SQLiteProgram, Int32, Object) 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.
Binds the given Object to the given SQLiteProgram using the proper typing.
[Android.Runtime.Register("bindObjectToProgram", "(Landroid/database/sqlite/SQLiteProgram;ILjava/lang/Object;)V", "")]
public static void BindObjectToProgram(Android.Database.Sqlite.SQLiteProgram? prog, int index, Java.Lang.Object? value);
	[<Android.Runtime.Register("bindObjectToProgram", "(Landroid/database/sqlite/SQLiteProgram;ILjava/lang/Object;)V", "")>]
static member BindObjectToProgram : Android.Database.Sqlite.SQLiteProgram * int * Java.Lang.Object -> unit
	Parameters
- prog
 - SQLiteProgram
 
the program to bind the object to
- index
 - Int32
 
the 1-based index to bind at
- value
 - Object
 
the value to bind
- Attributes
 
Remarks
Binds the given Object to the given SQLiteProgram using the proper typing. For example, bind numbers as longs/doubles, and everything else as a string by call toString() on it.
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.