Constants

KEY

KEY

VALUE

VALUE

BOTH

BOTH

Properties

$connName

$connName : string

Convenience property for connection management

Type

string

$queries

$queries : array

List of queries executed

Type

array

$parser

$parser : \Query\QueryParser

Query parser class instance

Type

\Query\QueryParser

$selectString

$selectString : string

Compiled 'select' clause

Type

string

$fromString

$fromString : string

Compiled 'from' clause

Type

string

$setString

$setString : string

Compiled arguments for insert / update

Type

string

$orderString

$orderString : string

Order by clause

Type

string

$groupString

$groupString : string

Group by clause

Type

string

$setArrayKeys

$setArrayKeys : array

Keys for insert/update statement

Type

array

$orderArray

$orderArray : array

Key/val pairs for order by clause

Type

array

$groupArray

$groupArray : array

Key/val pairs for group by clause

Type

array

$values

$values : array

Values to apply to prepared statements

Type

array

$whereValues

$whereValues : array

Values to apply to where clauses in prepared statements

Type

array

$limit

$limit : string

Value for limit string

Type

string

$offset

$offset : integer

Value for offset in limit string

Type

integer

$queryMap

$queryMap : array

Query component order mapping for complex select queries

Format: array( 'type' => 'where', 'conjunction' => ' AND ', 'string' => 'k=?' )

Type

array

$havingMap

$havingMap : array

Map for having clause

Type

array

$explain

$explain : boolean

Whether to do only an explain on the query

Type

boolean

Methods

_mixedSet()

_mixedSet(array  $var, mixed  $key, mixed  $val = NULL, integer  $valType = self::BOTH) : array

Set values in the class, with either an array or key value pair

Parameters

array $var
mixed $key
mixed $val
integer $valType

Returns

array

_select()

_select(string  $field, string|boolean  $as = FALSE) : string

Method to simplify select_ methods

Parameters

string $field
string|boolean $as

Returns

string

_getCompile()

_getCompile(string  $type, string  $table, boolean  $reset) : string

Helper function for returning sql strings

Parameters

string $type
string $table
boolean $reset

Returns

string

_like()

_like(string  $field, mixed  $val, string  $pos, string  $like = 'LIKE', string  $conj = 'AND') : \Query\QueryBuilderInterface

Simplify 'like' methods

Parameters

string $field
mixed $val
string $pos
string $like
string $conj

Returns

\Query\QueryBuilderInterface

_having()

_having(mixed  $key, mixed  $val = array(), string  $conj = 'AND') : \Query\QueryBuilderInterface

Simplify building having clauses

Parameters

mixed $key
mixed $val
string $conj

Returns

\Query\QueryBuilderInterface

_where()

_where(mixed  $key, mixed  $val = array()) : array

Do all the redundant stuff for where/having type methods

Parameters

mixed $key
mixed $val

Returns

array

_whereString()

_whereString(mixed  $key, mixed  $val = array(), string  $defaultConj = 'AND') : \Query\QueryBuilderInterface

Simplify generating where string

Parameters

mixed $key
mixed $val
string $defaultConj

Returns

\Query\QueryBuilderInterface

_whereIn()

_whereIn(mixed  $key, mixed  $val = array(), string  $in = 'IN', string  $conj = 'AND') : \Query\QueryBuilderInterface

Simplify where_in methods

Parameters

mixed $key
mixed $val
string $in
  • The (not) in fragment
string $conj
  • The where in conjunction

Returns

\Query\QueryBuilderInterface

_run()

_run(string  $type, string  $table, string  $sql = NULL, array|null  $vals = NULL, boolean  $reset = TRUE) : \PDOStatement

Executes the compiled query

Parameters

string $type
string $table
string $sql
array|null $vals
boolean $reset

Returns

\PDOStatement

_appendMap()

_appendMap(string  $conjunction = '', string  $string = '', string  $type = '') : void

Add an additional set of mapping pairs to a internal map

Parameters

string $conjunction
string $string
string $type

_appendQuery()

_appendQuery(array  $vals, string  $sql, integer  $totalTime) : void

Convert the prepared statement into readable sql

Parameters

array $vals
string $sql
integer $totalTime

_compileType()

_compileType(string  $type = '', string  $table = '') : string

Sub-method for generating sql strings

Parameters

string $type
string $table

Returns

string

_compile()

_compile(string  $type = '', string  $table = '') : string

String together the sql statements for sending to the db

Parameters

string $type
string $table

Returns

string