QueryBuilder
The QueryBuilder
class in SchemaJS is designed to help you easily construct complex queries for interacting with tables in your database. It provides methods to build WHERE
, AND
, and OR
conditions, allowing for powerful filtering and querying. The QueryBuilder
class allows users to define conditions programmatically, making it easy to dynamically generate queries and control how data is retrieved from the database.
Constructor
where
Adds a WHERE
condition to the query. The condition specifies the column key, the filter type, and the value to compare against.
and
Adds an AND
condition, grouping multiple conditions under an AND
clause. The callback allows the user to add more conditions to the AND
clause using a new QueryBuilder
instance.
or
Adds an OR
condition, grouping multiple conditions under an OR
clause. The callback allows the user to add more conditions to the OR
clause using a new QueryBuilder
instance.
Last updated