Lines Matching refs:tablealias
374 * @param string $tablealias The table the currently saved value(s) are stored in
380 public function filter(QueryBuilderWhere $add, $tablealias, $colname, $comp, $value, $op)
389 $add->where($op, "$tablealias.$colname $comp $pl");
401 * The passed $tablealias.$columnname might be a data_* table (referencing a single
409 * @param string $tablealias The table the currently saved value(s) are stored in
413 public function select(QueryBuilder $QB, $tablealias, $colname, $alias)
415 $QB->addSelectColumn($tablealias, $colname, $alias);
425 * @param string $tablealias The table the currently saved value is stored in
432 public function sort(QueryBuilder $QB, $tablealias, $colname, $order)
434 $QB->addOrderBy("$tablealias.$colname COLLATE NOCASE $order");