QBSorts
Overview
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 QBSelect documentation.
Properties Summarized
Get query builder parent table clause, this may be a query or a join clause.
Get query builder parent.
Methods Summarized
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.
Properties Detailed
parent
Get query builder parent table clause, this may be a query or a join clause.
Type QBSelect
Sample
root
Get query builder parent.
Type QBSelect
Sample
Methods Detailed
add(columnSortAsc)
Ad an ascending sorting on a column to the query sort.
Parameters
QBColumn columnSortAsc column to sort by
Returns: QBSorts
Sample
add(functionSortAsc)
Ad an ascending sorting on a column to the query sort.
Parameters
QBColumn functionSortAsc function to add
Returns: QBSorts
Sample
add(sort)
Ad a sorting on a column to the query sort.
Parameters
QBSort sort the sort to add
Returns: QBSorts
Sample
addPk()
Add the tables' primary pk columns in alphabetical order to the query sort.
Returns: QBSorts
Sample
clear()
Clear the sorting clause for the query.
Returns: QBSorts
Sample
Last updated