- sql
- The raw SQL statement, may contain ? for unknown values to be bound later.
Documentation for this section has not yet been entered.
Type Reason Android.Database.SQLException
Compiles an SQL statement into a reusable pre-compiled statement object. The parameters are identical to SQLiteDatabase.ExecSQL(string). You may put ?s in the statement and fill in those values with SQLiteProgram.BindString(int, System.String) and SQLiteProgram.BindLong(int, System.Int64) each time you want to run the statement. Statements may not return result sets larger than 1x1.
No two threads should be using the same Android.Database.Sqlite.SQLiteStatement at the same time.