How do I use prepared statements in SQlite in Android?
|
I use prepared statements in Android all the time, it's quite simple :
|
|||||||||||||||
|
|
If you want a cursor on return, then you might consider something like this:
See this snippet Genscripts in case you want a more complete one. Note that this is a parameterized SQL query, so in essence, it's a prepared statement. |
||||
|
|
jasonhudgins example won't work. You can't execute a query with stmt.execute() and get a value (or a Cursor) back. You can only precompile statements that either returns no rows at all (such as an insert, or create table statement) or a single row and column, (and use simpleQueryForLong() or simpleQueryForString()). |
||||
|
|
|
To get a cursor, you can't use a compiledStatement. However, if you want to use a full prepared SQL statement, I recommend an adaptation of jbaez's method... Using |
||||
|
|
