QBSorts
Last updated
Was this helpful?
Last updated
Was this helpful?
The QBSorts
class is a versatile utility for managing sorting conditions in QBSelect
queries. It enables developers to define ascending or descending sort orders for columns and functions, offering granular control over query result organization. This class integrates with other query builder components, allowing for dynamic updates to sorting criteria during query construction.
With support for adding primary key columns automatically in alphabetical order, QBSorts
streamlines the sorting process in complex queries. Additionally, it includes features for clearing sorting conditions, ensuring flexibility and adaptability. Key methods include add(columnSortAsc)
for adding sort orders, addPk()
for incorporating primary key columns, and clear()
for resetting the sort configuration.
For more details, see the .
Get query builder parent.
Ad an ascending sorting on a column to the query sort.
Ad an ascending sorting on a column to the query sort.
Ad a sorting on a column to the query sort.
Add the tables' primary pk columns in alphabetical order to the query sort.
Clear the sorting clause for the query.
Get query builder parent.
Sample
Ad an ascending sorting on a column to the query sort.
Parameters
Sample
Ad an ascending sorting on a column to the query sort.
Parameters
Sample
Ad a sorting on a column to the query sort.
Parameters
Sample
Add the tables' primary pk columns in alphabetical order to the query sort.
Sample
Clear the sorting clause for the query.
Sample
Type the parent QBSelect query associated with these sorts.
Type
columnSortAsc column to sort by
Returns: this QBSorts instance after adding the specified column to the sort order.
functionSortAsc function to add
Returns: this QBSorts instance after adding the specified function to the sort order.
sort the sort to add
Returns: this QBSorts instance after adding the specified sort condition.
Returns: this QBSorts instance after adding primary key columns to the sort order.
Returns: this QBSorts instance after clearing all sort conditions.