Lines Matching full:database
24 import android.database.Cursor;
25 import android.database.sqlite.SQLiteDatabase;
26 import android.database.sqlite.SQLiteOpenHelper;
27 import android.database.sqlite.SQLiteQueryBuilder;
36 * ContentProvider for the database of received cell broadcasts.
67 /** The database for this content provider. */
148 * Insert a new row. This throws an exception, as the database can only be modified by
151 * @param values a set of column_name/value pairs to add to the database.
160 * Delete one or more rows. This throws an exception, as the database can only be modified by
172 * Update one or more rows. This throws an exception, as the database can only be modified by
185 * Internal method to insert a new Cell Broadcast into the database and notify observers.
187 * @return true if the database was updated, false otherwise
197 Log.e(TAG, "failed to insert new broadcast into database");
206 * @return true if the database was updated, false otherwise
227 * @return true if the database was updated, false otherwise
249 * @return true if the database was updated, false otherwise
307 Log.d(TAG, "database changed: notifying observers...");