Methods

select()

select(string $fields) : \Query\Query_Builder

Specifies rows to select in a query

Parameters

string $fields

Returns

\Query\Query_Builder

select_max()

select_max(string $field, string|bool $as) : \Query\Query_Builder

Selects the maximum value of a field from a query

Parameters

string $field
string|bool $as

Returns

\Query\Query_Builder

select_min()

select_min(string $field, string|bool $as) : \Query\Query_Builder

Selects the minimum value of a field from a query

Parameters

string $field
string|bool $as

Returns

\Query\Query_Builder

select_avg()

select_avg(string $field, string|bool $as) : \Query\Query_Builder

Selects the average value of a field from a query

Parameters

string $field
string|bool $as

Returns

\Query\Query_Builder

select_sum()

select_sum(string $field, string|bool $as) : \Query\Query_Builder

Selects the sum of a field from a query

Parameters

string $field
string|bool $as

Returns

\Query\Query_Builder

distinct()

distinct() : \Query\Query_Builder

Adds the 'distinct' keyword to a query

Returns

\Query\Query_Builder

explain()

explain() : \Query\Query_Builder

Shows the query plan for the query

Returns

\Query\Query_Builder

from()

from(string $tblname) : \Query\Query_Builder

Specify the database table to select from

Parameters

string $tblname

Returns

\Query\Query_Builder

like()

like(string $field, mixed $val, string $pos) : \Query\Query_Builder

Creates a Like clause in the sql statement

Parameters

string $field
mixed $val
string $pos

Returns

\Query\Query_Builder

or_like()

or_like(string $field, mixed $val, string $pos) : \Query\Query_Builder

Generates an OR Like clause

Parameters

string $field
mixed $val
string $pos

Returns

\Query\Query_Builder

not_like()

not_like(string $field, mixed $val, string $pos) : \Query\Query_Builder

Generates a NOT LIKE clause

Parameters

string $field
mixed $val
string $pos

Returns

\Query\Query_Builder

or_not_like()

or_not_like(string $field, mixed $val, string $pos) : \Query\Query_Builder

Generates a OR NOT LIKE clause

Parameters

string $field
mixed $val
string $pos

Returns

\Query\Query_Builder

having()

having(mixed $key, mixed $val) : \Query\Query_Builder

Generates a 'Having' clause

Parameters

mixed $key
mixed $val

Returns

\Query\Query_Builder

or_having()

or_having(mixed $key, mixed $val) : \Query\Query_Builder

Generates a 'Having' clause prefixed with 'OR'

Parameters

mixed $key
mixed $val

Returns

\Query\Query_Builder

where()

where(mixed $key, mixed $val, bool $escape) : \Query\Query_Builder

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

Parameters

mixed $key
mixed $val
bool $escape

Returns

\Query\Query_Builder

or_where()

or_where(string $key, mixed $val) : \Query\Query_Builder

Where clause prefixed with "OR"

Parameters

string $key
mixed $val

Returns

\Query\Query_Builder

where_in()

where_in(mixed $field, mixed $val) : \Query\Query_Builder

Where clause with 'IN' statement

Parameters

mixed $field
mixed $val

Returns

\Query\Query_Builder

or_where_in()

or_where_in(string $field, mixed $val) : \Query\Query_Builder

Where in statement prefixed with "or"

Parameters

string $field
mixed $val

Returns

\Query\Query_Builder

where_not_in()

where_not_in(string $field, mixed $val) : \Query\Query_Builder

WHERE NOT IN (FOO) clause

Parameters

string $field
mixed $val

Returns

\Query\Query_Builder

or_where_not_in()

or_where_not_in(string $field, mixed $val) : \Query\Query_Builder

OR WHERE NOT IN (FOO) clause

Parameters

string $field
mixed $val

Returns

\Query\Query_Builder

set()

set(mixed $key, mixed $val) : \Query\Query_Builder

Sets values for inserts / updates / deletes

Parameters

mixed $key
mixed $val

Returns

\Query\Query_Builder

join()

join(string $table, string $condition, string $type) : \Query\Query_Builder

Creates a join phrase in a compiled query

Parameters

string $table
string $condition
string $type

Returns

\Query\Query_Builder

group_by()

group_by(mixed $field) : \Query\Query_Builder

Group the results by the selected field(s)

Parameters

mixed $field

Returns

\Query\Query_Builder

order_by()

order_by(string $field, string $type) : \Query\Query_Builder

Order the results by the selected field(s)

Parameters

string $field
string $type

Returns

\Query\Query_Builder

limit()

limit(int $limit, int|bool $offset) : string

Set a limit on the current sql statement

Parameters

int $limit
int|bool $offset

Returns

string

group_start()

group_start() : \Query\Query_Builder

Adds a paren to the current query for query grouping

Returns

\Query\Query_Builder

or_group_start()

or_group_start() : \Query\Query_Builder

Adds a paren to the current query for query grouping, prefixed with 'OR'

Returns

\Query\Query_Builder

or_not_group_start()

or_not_group_start() : \Query\Query_Builder

Adds a paren to the current query for query grouping, prefixed with 'OR NOT'

Returns

\Query\Query_Builder

get()

get(mixed $table, int|bool $limit, int|bool $offset) : \PDOStatement

Select and retrieve all records from the current table, and/or execute current compiled query

Parameters

mixed $table
int|bool $limit
int|bool $offset

Returns

\PDOStatement

get_where()

get_where(string $table, array $where, int|bool $limit, int|bool $offset) : \PDOStatement

Convience method for get() with a where clause

Parameters

string $table
array $where
int|bool $limit
int|bool $offset

Returns

\PDOStatement

count_all()

count_all(string $table) : int

Retrieve the number of rows in the selected table

Parameters

string $table

Returns

int

count_all_results()

count_all_results(string $table) : int

Retrieve the number of results for the generated query - used in place of the get() method

Parameters

string $table

Returns

int

insert()

insert(string $table, mixed $data) : \PDOStatement

Creates an insert clause, and executes it

Parameters

string $table
mixed $data

Returns

\PDOStatement

insert_batch()

insert_batch(string $table, array $data) : \PDOStatement|null

Creates and executes a batch insertion query

Parameters

string $table
array $data

Returns

\PDOStatement|null

update()

update(string $table, mixed $data) : \PDOStatement

Creates an update clause, and executes it

Parameters

string $table
mixed $data

Returns

\PDOStatement

delete()

delete(string $table, mixed $where) : \PDOStatement

Deletes data from a table

Parameters

string $table
mixed $where

Returns

\PDOStatement

get_compiled_select()

get_compiled_select(string $table, bool $reset) : string

Returns the generated 'select' sql query

Parameters

string $table
bool $reset

Returns

string

get_compiled_insert()

get_compiled_insert(string $table, bool $reset) : string

Returns the generated 'insert' sql query

Parameters

string $table
bool $reset

Returns

string

get_compiled_update()

get_compiled_update(string $table, bool $reset) : string

Returns the generated 'update' sql query

Parameters

string $table
bool $reset

Returns

string

get_compiled_delete()

get_compiled_delete(string $table, bool $reset) : string

Returns the generated 'delete' sql query

Parameters

string $table
bool $reset

Returns

string

reset_query()

reset_query() : void

Clear out the class variables, so the next query can be run