I am currently developing an application with android and I need a database.
I created a database with SQLite Manager (firefox plugin).
how I can select items from the Database
I read the documentation but I did not understand.
please help me.
asked Mar 6, 2011 at 10:42
User616263
4672 gold badges9 silver badges23 bronze badges
1 Answer 1
You first need to copy the database to the proper directory, such as in this tutorial.
It will also help you extend SQLiteOpenHelper which will get you a SQLiteDatabase object.
You can then use SQLiteDatabase.rawQuery(String, String[]) to get a Cursor and start reading results.
answered Mar 6, 2011 at 10:49
Matthew
44.9k10 gold badges100 silver badges87 bronze badges
Sign up to request clarification or add additional context in comments.
Comments
lang-sql