Lines Matching refs:table

924      * Mark this table as syncable. When an update occurs in this table the
927 * @param table the table to mark as syncable
928 * @param deletedTable The deleted table that corresponds to the
929 * syncable table
933 public void markTableSyncable(String table, String deletedTable) {
937 * Mark this table as syncable, with the _sync_dirty residing in another
938 * table. When an update occurs in this table the _sync_dirty field of the
942 * @param table an update on this table will trigger a sync time removal
943 * @param foreignKey this is the column in table whose value is an _id in
945 * @param updateTable this is the table that will have its _sync_dirty
949 public void markTableSyncable(String table, String foreignKey, String updateTable) {
953 * Finds the name of the first table, which is editable.
956 * @return the first table listed
1002 * @param table The table name to compile the query against.
1008 * will return all rows for the given table.
1029 public Cursor query(boolean distinct, String table, String[] columns,
1032 return queryWithFactory(null, distinct, table, columns, selection, selectionArgs,
1040 * @param table The table name to compile the query against.
1046 * will return all rows for the given table.
1070 public Cursor query(boolean distinct, String table, String[] columns,
1073 return queryWithFactory(null, distinct, table, columns, selection, selectionArgs,
1082 * @param table The table name to compile the query against.
1088 * will return all rows for the given table.
1110 boolean distinct, String table, String[] columns,
1113 return queryWithFactory(cursorFactory, distinct, table, columns, selection,
1122 * @param table The table name to compile the query against.
1128 * will return all rows for the given table.
1153 boolean distinct, String table, String[] columns,
1159 distinct, table, columns, selection, groupBy, having, orderBy, limit);
1162 findEditTable(table), cancellationSignal);
1169 * Query the given table, returning a {@link Cursor} over the result set.
1171 * @param table The table name to compile the query against.
1177 * will return all rows for the given table.
1196 public Cursor query(String table, String[] columns, String selection,
1200 return query(false, table, columns, selection, selectionArgs, groupBy,
1205 * Query the given table, returning a {@link Cursor} over the result set.
1207 * @param table The table name to compile the query against.
1213 * will return all rows for the given table.
1234 public Cursor query(String table, String[] columns, String selection,
1238 return query(false, table, columns, selection, selectionArgs, groupBy,
1282 * @param editTable the name of the first table, which is editable
1300 * @param editTable the name of the first table, which is editable
1324 * @param table the table to insert the row into
1337 public long insert(String table, String nullColumnHack, ContentValues values) {
1339 return insertWithOnConflict(table, nullColumnHack, values, CONFLICT_NONE);
1349 * @param table the table to insert the row into
1363 public long insertOrThrow(String table, String nullColumnHack, ContentValues values)
1365 return insertWithOnConflict(table, nullColumnHack, values, CONFLICT_NONE);
1371 * @param table the table in which to replace the row
1383 public long replace(String table, String nullColumnHack, ContentValues initialValues) {
1385 return insertWithOnConflict(table, nullColumnHack, initialValues,
1396 * @param table the table in which to replace the row
1409 public long replaceOrThrow(String table, String nullColumnHack,
1411 return insertWithOnConflict(table, nullColumnHack, initialValues,
1418 * @param table the table to insert the row into
1435 public long insertWithOnConflict(String table, String nullColumnHack,
1443 sql.append(table);
1481 * @param table the table to delete from
1488 public int delete(String table, String whereClause, String[] whereArgs) {
1491 SQLiteStatement statement = new SQLiteStatement(this, "DELETE FROM " + table +
1506 * @param table the table to update in
1513 public int update(String table, ContentValues values, String whereClause, String[] whereArgs) {
1514 return updateWithOnConflict(table, values, whereClause, whereArgs, CONFLICT_NONE);
1520 * @param table the table to update in
1528 public int updateWithOnConflict(String table, ContentValues values,
1539 sql.append(table);
1621 * <li>CREATE or DROP table / trigger / view / index / virtual table</li>