vote up 1 vote down star
1

How do I use prepared statements in SQlite in Android?

flag

73% accept rate

2 Answers

vote up 5 vote down check

I use prepared statements in Android all the time, it's quite simple :

SQLiteDatabase db = dbHelper.getWritableDatabase();
SQLiteStatement stmt = db.compileStatement("SELECT * FROM Country WHERE code = ?");
stmt.bindString(1, "US");
stmt.execute();
link|flag
Is it possible with prepared statements to put arguments that are not values? like "SELECT * FROM ?"? – J. Pablo Fernández Jan 20 at 6:16
vote up 0 vote down

Nice explanation. Thnx.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.