Home
last modified time | relevance | path

Searched refs:TABLE_NAME (Results 1 – 1 of 1) sorted by relevance

/samples/Support4Demos/src/main/java/com/example/android/supportv4/app/
DLoaderThrottleSupport.java82 public static final String TABLE_NAME = "main"; field in LoaderThrottleSupport.MainTable
140 db.execSQL("CREATE TABLE " + MainTable.TABLE_NAME + " (" in onCreate()
191 mUriMatcher.addURI(AUTHORITY, MainTable.TABLE_NAME, MAIN); in SimpleProvider()
192 mUriMatcher.addURI(AUTHORITY, MainTable.TABLE_NAME + "/#", MAIN_ID); in SimpleProvider()
220 qb.setTables(MainTable.TABLE_NAME); in query()
293 long rowId = db.insert(MainTable.TABLE_NAME, null, values); in insert()
318 count = db.delete(MainTable.TABLE_NAME, where, whereArgs); in delete()
329 count = db.delete(MainTable.TABLE_NAME, finalWhere, whereArgs); in delete()
353 count = db.update(MainTable.TABLE_NAME, values, where, whereArgs); in update()
361 count = db.update(MainTable.TABLE_NAME, values, finalWhere, whereArgs); in update()