Home | History | Annotate | Download | only in app

Lines Matching defs:TABLE_NAME

78         public static final String TABLE_NAME = "main";
136 db.execSQL("CREATE TABLE " + MainTable.TABLE_NAME + " ("
187 mUriMatcher.addURI(AUTHORITY, MainTable.TABLE_NAME, MAIN);
188 mUriMatcher.addURI(AUTHORITY, MainTable.TABLE_NAME + "/#", MAIN_ID);
216 qb.setTables(MainTable.TABLE_NAME);
289 long rowId = db.insert(MainTable.TABLE_NAME, null, values);
314 count = db.delete(MainTable.TABLE_NAME, where, whereArgs);
325 count = db.delete(MainTable.TABLE_NAME, finalWhere, whereArgs);
349 count = db.update(MainTable.TABLE_NAME, values, where, whereArgs);
357 count = db.update(MainTable.TABLE_NAME, values, finalWhere, whereArgs);