Lines Matching full:database
25 import android.database.Cursor;
26 import android.database.sqlite.SQLiteDatabase;
27 import android.database.sqlite.SQLiteOpenHelper;
28 import android.database.sqlite.SQLiteQueryBuilder;
37 * ContentProvider for the database of received cell broadcasts.
68 /** The database for this content provider. */
150 * Insert a new row. This throws an exception, as the database can only be modified by
153 * @param values a set of column_name/value pairs to add to the database.
162 * Delete one or more rows. This throws an exception, as the database can only be modified by
174 * Update one or more rows. This throws an exception, as the database can only be modified by
187 * Internal method to insert a new Cell Broadcast into the database and notify observers.
195 // Note: this method previously queried the database for duplicate message IDs, but this
197 // alerts, e.g. ETWS, to not display if the database is filled with old messages.
202 Log.e(TAG, "failed to insert new broadcast into database");
207 // broadcast could not be written to the database.
215 * @return true if the database was updated, false otherwise
233 * @return true if the database was updated, false otherwise
254 * @return true if the database was updated, false otherwise
312 Log.d(TAG, "database changed: notifying observers...");