Query\QueryBuilder
Convenience class for creating sql queries
Synopsis
class QueryBuilder
extends QueryBuilderBase
implements
QueryBuilderInterface
{
- // methods
- public QueryBuilder select()
- public QueryBuilder selectMax()
- public QueryBuilder selectMin()
- public QueryBuilder selectAvg()
- public QueryBuilder selectSum()
- public QueryBuilder returning()
- public QueryBuilder distinct()
- public QueryBuilder explain()
- public QueryBuilder from()
- public QueryBuilder like()
- public QueryBuilder orLike()
- public QueryBuilder notLike()
- public QueryBuilder orNotLike()
- public QueryBuilder having()
- public QueryBuilder orHaving()
- public QueryBuilder where()
- public QueryBuilder orWhere()
- public QueryBuilder whereIn()
- public QueryBuilder orWhereIn()
- public QueryBuilder whereNotIn()
- public QueryBuilder orWhereNotIn()
- public QueryBuilder set()
- public QueryBuilder join()
- public QueryBuilder groupBy()
- public QueryBuilder orderBy()
- public QueryBuilder limit()
- public QueryBuilder groupStart()
- public QueryBuilder notGroupStart()
- public QueryBuilder orGroupStart()
- public QueryBuilder orNotGroupStart()
- public QueryBuilder groupEnd()
- public PDOStatement get()
- public PDOStatement getWhere()
- public int countAll()
- public int countAllResults()
- public PDOStatement insert()
- public ?PDOStatement insertBatch()
- public PDOStatement update()
- public ?int updateBatch()
- public PDOStatement delete()
- public string getCompiledSelect()
- public string getCompiledInsert()
- public string getCompiledUpdate()
- public string getCompiledDelete()
- // Inherited methods from QueryBuilderBase
- public void __construct()
- public void __destruct()
- public mixed __call()
- public void resetQuery()
Hierarchy
Members
public
- $connName
—
string
Convenience property for connection management - $queries
—
array
List of queries executed
Methods
public
- countAll() — Retrieve the number of rows in the selected table
- countAllResults() — Retrieve the number of results for the generated query - used in place of the get() method
- delete() — Deletes data from a table
- distinct() — Adds the 'distinct' keyword to a query
- explain() — Tell the database to give you the query plan instead of result set
- from() — Specify the database table to select from
- get() — Select and retrieve all records from the current table, and/or execute current compiled query
- getCompiledDelete() — Returns the generated 'delete' sql query
- getCompiledInsert() — Returns the generated 'insert' sql query
- getCompiledSelect() — Returns the generated 'select' sql query
- getCompiledUpdate() — Returns the generated 'update' sql query
- getWhere() — Convenience method for get() with a where clause
- groupBy() — Group the results by the selected field(s)
- groupEnd() — Ends a query group
- groupStart() — Adds a paren to the current query for query grouping
- having() — Generates a 'Having' clause
- insert() — Creates an insert clause, and executes it
- insertBatch() — Creates and executes a batch insertion query
- join() — Creates a join phrase in a compiled query
- like() — Creates a Like clause in the sql statement
- limit() — Set a limit on the current sql statement
- notGroupStart() — Adds a paren to the current query for query grouping, prefixed with 'NOT'
- notLike() — Generates a NOT LIKE clause
- orGroupStart() — Adds a paren to the current query for query grouping, prefixed with 'OR'
- orHaving() — Generates a 'Having' clause prefixed with 'OR'
- orLike() — Generates an OR Like clause
- orNotGroupStart() — Adds a paren to the current query for query grouping, prefixed with 'OR NOT'
- orNotLike() — Generates a OR NOT LIKE clause
- orWhere() — Where clause prefixed with "OR"
- orWhereIn() — Where in statement prefixed with "or"
- orWhereNotIn() — OR WHERE NOT IN (FOO) clause
- orderBy() — Order the results by the selected field(s)
- returning() — Add a 'returning' clause to an insert,update, or delete query
- select() — Specifies rows to select in a query
- selectAvg() — Selects the average value of a field from a query
- selectMax() — Selects the maximum value of a field from a query
- selectMin() — Selects the minimum value of a field from a query
- selectSum() — Selects the sum of a field from a query
- set() — Sets values for inserts / updates / deletes
- update() — Creates an update clause, and executes it
- updateBatch() — Creates a batch update, and executes it.
- where() — Specify condition(s) in the where clause of a query Note: this function works with key / value, or a passed array with key / value pairs
- whereIn() — Where clause with 'IN' statement
- whereNotIn() — WHERE NOT IN (FOO) clause
Inherited from Query\QueryBuilderBase
public
- __call() — Calls a function further down the inheritance chain.
- resetQuery() — Clear out the class variables, so the next query can be run