Home | History | Annotate | Download | only in search

Lines Matching full:database

26   <p>There are many ways to store your data, such as in an online database, in a local SQLite
27 database, or even in a text file. It is up to you to decide what is the best solution for your
35 memory via callbacks, instead of to a database file. To create a virtual table, create a class
48 android.database.sqlite.SQLiteOpenHelper}. The {@link android.database.sqlite.SQLiteOpenHelper} class
49 defines abstract methods that you must override so that your database table can be created and
50 upgraded when necessary. For example, here is some code that declares a database table that will
95 Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
157 good place would be in the {@link android.database.sqlite.SQLiteOpenHelper#onCreate onCreate()}
199 in a {@link android.database.Cursor} that you can iterate through or use to build a {@link android.widget.ListView}.