Home | History | Annotate | Download | only in db

Lines Matching defs:table

50  *     Cursor c = builder.table(FeedContract.Entry.TABLE_NAME)       // String TABLE_NAME = "entry"
56 * <p>In this example, the table name and filters ({@code WHERE} clauses) are both explicitly
77 * Cursor c = builder.table(Tables.SESSIONS_JOIN_BLOCKS_ROOMS)
87 * modified table name (since this class doesn't directly support these), and an inner join using
169 * Table name to use for SQL {@code FROM} statement.
178 * @param table Table name
181 public SelectionBuilder table(String table) {
182 mTable = table;
187 * Verify that a table name has been supplied using table().
189 * @throws IllegalStateException if table not set
193 throw new IllegalStateException("Table not specified");
200 * <p>Map columns from a secondary table onto the current result set. References to the column
201 * specified in {@code column} will be replaced with {@code table.column} in the SQL {@code
205 * @param table Secondary table to join.
208 public SelectionBuilder mapToTable(String column, String table) {
209 mProjectionMap.put(column, table + "." + column);
253 * <p>In cases where a column is mapped to another data source (either another table, or an
279 return "SelectionBuilder[table=" + mTable + ", selection=" + getSelection()