Builder
        
        extends BaseBuilder
    
    
            
            in package
            
        
    
    
    
Builder for SQLite3
Table of Contents
Properties
- $QBGroupBy : array<string|int, mixed>
- QB GROUP BY data
- $QBNoEscape : array<int, bool|null>
- Whether to protect identifiers in SELECT
- $QBOrderBy : array<string|int, mixed>|string|null
- QB ORDER BY data
- $binds : array<string|int, mixed>
- Collects the named parameters and their values for later binding in the Query object.
- $bindsKeyCount : array<string|int, mixed>
- Collects the key count for named parameters in the Query object.
- $canLimitDeletes : bool
- Default installs of SQLite typically do not support limiting delete clauses.
- $canLimitWhereUpdates : bool
- Default installs of SQLite do no support limiting update queries in combo with WHERE.
- $countString : string
- COUNT string
- $db : BaseConnection
- A reference to the database connection.
- $isLiteralStr : array<int, string>
- Strings that determine if a string represents a literal value or a field name
- $joinTypes : array<string|int, mixed>
- Tables relation types
- $pregOperators : array<int, string>
- RegExp used to get operators
- $QBDistinct : bool
- QB DISTINCT flag
- $QBFrom : array<string|int, mixed>
- QB FROM data
- $QBHaving : array<string|int, mixed>
- QB HAVING data
- $QBIgnore : bool
- Ignore data that cause certain exceptions, for example in case of duplicate keys.
- $QBJoin : array<string|int, mixed>
- QB JOIN data
- $QBKeys : array<int, string>
- QB keys list of column names.
- $QBLimit : bool|int
- QB LIMIT data
- $QBOffset : bool|int
- QB OFFSET data
- 
    $QBOptions
    
                         : array{updateFieldsAdditional?: array, tableIdentity?: string, updateFields?: array, constraints?: array, setQueryAsData?: string, sql?: string, alias?: string, fieldTypes?: array>} 
- QB Options data Holds additional options and data used to render SQL and is reset by resetWrite()
- $QBSelect : array<string|int, mixed>
- QB SELECT data
- $QBSet : array<string, string>|array<int, array<int, int|string>>
- QB data sets
- $QBUnion : array<int, string>
- QB UNION data
- $QBWhere : array<string|int, mixed>
- QB WHERE data
- $QBWhereGroupCount : int
- QB WHERE group count
- $QBWhereGroupStarted : bool
- QB WHERE group started flag
- $randomKeyword : array<string|int, mixed>
- ORDER BY random keyword
- $resetDeleteData : bool
- Reset DELETE data flag
- $supportedIgnoreStatements : array<string, string>
- Specifies which sql statements support the ignore option.
- $tableName : string
- Name of the primary table for this instance.
- $testMode : bool
- Builder testing mode status.
Methods
- __construct() : mixed
- Constructor
- countAll() : int|string
- Generates a platform-specific query string that counts all records in the particular table
- countAllResults() : int|string
- Generates a platform-specific query string that counts all records returned by an Query Builder query.
- db() : BaseConnection
- Returns the current database connection
- decrement() : bool
- Decrements a numeric column by the specified value.
- delete() : bool|string
- Compiles a delete string and runs the query
- deleteBatch() : false|int|array<int, string>
- Sets data and calls batchExecute to run queries
- distinct() : $this
- Sets a flag which tells the query string compiler to add DISTINCT
- emptyTable() : bool|string
- Compiles a delete string and runs "DELETE FROM table"
- from() : $this
- Generates the FROM portion of the query
- fromSubquery() : $this
- get() : false|ResultInterface
- Compiles the select statement based on the other functions called and runs the query
- getBinds() : array<string|int, mixed>
- Returns an array of bind values and their named parameters for binding in the Query object later.
- getCompiledDelete() : string
- Compiles a delete query string and returns the sql
- getCompiledInsert() : bool|string
- Compiles an insert query and returns the sql
- getCompiledQBWhere() : array<string|int, mixed>
- Compiles the set conditions and returns the sql statement
- getCompiledSelect() : string
- Compiles a SELECT query string and returns the sql.
- getCompiledUpdate() : bool|string
- Compiles an update query and returns the sql
- getCompiledUpsert() : string
- Compiles an upsert query and returns the sql
- getSetData() : array<string|int, mixed>
- Returns the previously set() data, alternatively resetting it if needed.
- getTable() : string
- Gets the name of the primary table.
- getWhere() : ResultInterface
- Allows the where clause, limit and offset to be added directly
- groupBy() : $this
- groupEnd() : $this
- Ends a query group
- groupStart() : $this
- Starts a query group.
- having() : $this
- Separates multiple calls with 'AND'.
- havingGroupEnd() : $this
- Ends a query group for HAVING clause.
- havingGroupStart() : $this
- Starts a query group for HAVING clause.
- havingIn() : $this
- Generates a HAVING field IN('item', 'item') SQL query, joined with 'AND' if appropriate.
- havingLike() : $this
- Generates a %LIKE% portion of the query.
- havingNotIn() : $this
- Generates a HAVING field NOT IN('item', 'item') SQL query, joined with 'AND' if appropriate.
- ignore() : $this
- Ignore
- increment() : bool
- Increments a numeric column by the specified value.
- insert() : BaseResult|bool|Query
- Compiles an insert string and runs the query
- insertBatch() : false|int|array<int, string>
- Compiles batch insert strings and runs the queries
- join() : $this
- Generates the JOIN portion of the query
- like() : $this
- Generates a %LIKE% portion of the query.
- limit() : $this
- notGroupStart() : $this
- Starts a query group, but NOTs the group
- notHavingGroupStart() : $this
- Starts a query group for HAVING clause, but NOTs the group.
- notHavingLike() : $this
- Generates a NOT LIKE portion of the query.
- notLike() : $this
- Generates a NOT LIKE portion of the query.
- offset() : $this
- Sets the OFFSET value
- onConstraint() : $this
- Sets constraints for batch upsert, update
- orderBy() : $this
- orGroupStart() : $this
- Starts a query group, but ORs the group
- orHaving() : $this
- Separates multiple calls with 'OR'.
- orHavingGroupStart() : $this
- Starts a query group for HAVING clause, but ORs the group.
- orHavingIn() : $this
- Generates a HAVING field IN('item', 'item') SQL query, joined with 'OR' if appropriate.
- orHavingLike() : $this
- Generates a %LIKE% portion of the query.
- orHavingNotIn() : $this
- Generates a HAVING field NOT IN('item', 'item') SQL query, joined with 'OR' if appropriate.
- orLike() : $this
- Generates a %LIKE% portion of the query.
- orNotGroupStart() : $this
- Starts a query group, but OR NOTs the group
- orNotHavingGroupStart() : $this
- Starts a query group for HAVING clause, but OR NOTs the group.
- orNotHavingLike() : $this
- Generates a NOT LIKE portion of the query.
- orNotLike() : $this
- Generates a NOT LIKE portion of the query.
- orWhere() : $this
- OR WHERE
- orWhereIn() : $this
- Generates a WHERE field IN('item', 'item') SQL query, joined with 'OR' if appropriate.
- orWhereNotIn() : $this
- Generates a WHERE field NOT IN('item', 'item') SQL query, joined with 'OR' if appropriate.
- replace() : BaseResult|false|Query|string
- Compiles a replace into string and runs the query
- resetQuery() : $this
- Publicly-visible method to reset the QB values.
- select() : $this
- Generates the SELECT portion of the query
- selectAvg() : $this
- Generates a SELECT AVG(field) portion of a query
- selectCount() : $this
- Generates a SELECT COUNT(field) portion of a query
- selectMax() : $this
- Generates a SELECT MAX(field) portion of a query
- selectMin() : $this
- Generates a SELECT MIN(field) portion of a query
- selectSubquery() : self
- Adds a subquery to the selection
- selectSum() : $this
- Generates a SELECT SUM(field) portion of a query
- set() : $this
- Allows key/value pairs to be set for insert(), update() or replace().
- setData() : $this|null
- Allows a row or multiple rows to be set for batch inserts/upserts/updates
- setInsertBatch() : $this|null
- Allows key/value pairs to be set for batch inserts
- setQueryAsData() : BaseBuilder
- Sets data source as a query for insertBatch()/updateBatch()/upsertBatch()/deleteBatch()
- setUpdateBatch() : $this
- Allows key/value pairs to be set for batch updating
- testMode() : $this
- Sets a test mode status.
- truncate() : bool|string
- Compiles a truncate string and runs the query If the database does not support the truncate() command This function maps to "DELETE FROM table"
- union() : $this
- Add UNION statement
- unionAll() : $this
- Add UNION ALL statement
- update() : bool
- Compiles an update string and runs the query.
- updateBatch() : false|int|array<int, string>
- Sets data and calls batchExecute to run queries
- updateFields() : $this
- Sets update fields for upsert, update
- upsert() : false|int|array<int, string>
- Converts call to batchUpsert
- upsertBatch() : false|int|array<int, string>
- Compiles batch upsert strings and runs the queries
- when() : $this
- Only runs the query when $condition evaluates to true
- whenNot() : $this
- Only runs the query when $condition evaluates to false
- where() : $this
- Generates the WHERE portion of the query.
- whereIn() : $this
- Generates a WHERE field IN('item', 'item') SQL query, joined with 'AND' if appropriate.
- whereNotIn() : $this
- Generates a WHERE field NOT IN('item', 'item') SQL query, joined with 'AND' if appropriate.
- _delete() : string
- Generates a platform-specific delete string from the supplied data
- _deleteBatch() : string
- Generates a platform-specific batch update string from the supplied data
- _fromTables() : string
- Groups tables in FROM clauses if needed, so there is no confusion about operator precedence.
- _insert() : string
- Generates a platform-specific insert string from the supplied data
- _insertBatch() : string
- Generates a platform-specific insert string from the supplied data.
- _like() : $this
- _like_statement() : string
- Platform independent LIKE statement builder.
- _limit() : string
- Generates a platform-specific LIMIT clause.
- _replace() : string
- Replace statement
- _truncate() : string
- Generates a platform-specific truncate string from the supplied data
- _update() : string
- Generates a platform-specific update string from the supplied data
- _updateBatch() : string
- Generates a platform-specific batch update string from the supplied data
- _upsertBatch() : string
- Generates a platform-specific upsertBatch string from the supplied data
- _whereIn() : $this
- addUnionStatement() : $this
- batchExecute() : false|int|array<int, string>
- Compiles batch insert/update/upsert strings and runs the queries
- batchObjectToArray() : array<string|int, mixed>
- Takes an object as input and converts the class variables to array key/vals
- buildSubquery() : string
- cleanClone() : $this
- Returns a clone of a Base Builder with reset query builder values.
- compileFinalQuery() : string
- Returns a finalized, compiled query string with the bindings inserted and prefixes swapped out.
- compileGroupBy() : string
- Escapes identifiers in GROUP BY statements at execution time.
- compileIgnore() : string
- Checks if the ignore option is supported by the Database Driver for the specific statement.
- compileOrderBy() : string
- Escapes identifiers in ORDER BY statements at execution time.
- compileSelect() : string
- Compile the SELECT statement
- compileWhereHaving() : string
- Escapes identifiers in WHERE and HAVING statements at execution time.
- createAliasFromTable() : string
- Determines the alias name based on the table
- fieldsFromQuery() : array<string|int, mixed>
- Gets column names from a select query
- formatValues() : array<string|int, mixed>
- Converts value array of array to array of strings
- getOperator() : array<string|int, mixed>|false|string
- Returns the SQL string operator
- groupEndPrepare() : $this
- Prepate a query group end.
- groupGetType() : string
- groupStartPrepare() : $this
- Prepate a query group start.
- hasOperator() : bool
- Tests whether the string has an SQL operator
- isLiteral() : bool
- Determines if a string represents a literal value or a field name
- isSubquery() : bool
- maxMinAvgSum() : $this
- SELECT [MAX|MIN|AVG|SUM|COUNT]()
- objectToArray() : array<string|int, mixed>
- Takes an object as input and converts the class variables to array key/vals
- resetRun() : void
- Resets the query builder values. Called by the get() function
- resetSelect() : void
- Resets the query builder values. Called by the get() function
- resetWrite() : void
- Resets the query builder "write" values.
- setBind() : string
- Stores a bind value after ensuring that it's unique.
- trackAliases() : string|null
- Used to track SQL statements written with aliased tables.
- unionInjection() : string
- validateInsert() : bool
- This method is used by both insert() and getCompiledInsert() to validate that the there data is actually being set and that table has been chosen to be inserted into.
- validateUpdate() : bool
- This method is used by both update() and getCompiledUpdate() to validate that data is actually being set and that a table has been chosen to be updated.
- whereHaving() : $this
Properties
$QBGroupBy
QB GROUP BY data
        public
            array<string|int, mixed>
    $QBGroupBy
     = []
    
    
    
    
    
$QBNoEscape
Whether to protect identifiers in SELECT
        public
            array<int, bool|null>
    $QBNoEscape
     = []
    
        true=protect, false=not protect
$QBOrderBy
QB ORDER BY data
        public
            array<string|int, mixed>|string|null
    $QBOrderBy
     = []
    
    
    
    
    
$binds
Collects the named parameters and their values for later binding in the Query object.
        protected
            array<string|int, mixed>
    $binds
     = []
    
    
    
    
    
$bindsKeyCount
Collects the key count for named parameters in the Query object.
        protected
            array<string|int, mixed>
    $bindsKeyCount
     = []
    
    
    
    
    
$canLimitDeletes
Default installs of SQLite typically do not support limiting delete clauses.
        protected
            bool
    $canLimitDeletes
     = false
    
    
    
    
    
$canLimitWhereUpdates
Default installs of SQLite do no support limiting update queries in combo with WHERE.
        protected
            bool
    $canLimitWhereUpdates
     = false
    
    
    
    
    
$countString
COUNT string
        protected
            string
    $countString
     = 'SELECT COUNT(*) AS '
    
    
    
    Tags
$db
A reference to the database connection.
        protected
            BaseConnection
    $db
    
    
    
    
    
    
$isLiteralStr
Strings that determine if a string represents a literal value or a field name
        protected
            array<int, string>
    $isLiteralStr
     = []
    
    
    
    
    
$joinTypes
Tables relation types
        protected
            array<string|int, mixed>
    $joinTypes
     = ['LEFT', 'RIGHT', 'OUTER', 'INNER', 'LEFT OUTER', 'RIGHT OUTER']
    
    
    
    
    
$pregOperators
RegExp used to get operators
        protected
            array<int, string>
    $pregOperators
     = []
    
    
    
    
    
$QBDistinct
QB DISTINCT flag
        protected
            bool
    $QBDistinct
     = false
    
    
    
    
    
$QBFrom
QB FROM data
        protected
            array<string|int, mixed>
    $QBFrom
     = []
    
    
    
    
    
$QBHaving
QB HAVING data
        protected
            array<string|int, mixed>
    $QBHaving
     = []
    
    
    
    
    
$QBIgnore
Ignore data that cause certain exceptions, for example in case of duplicate keys.
        protected
            bool
    $QBIgnore
     = false
    
    
    
    
    
$QBJoin
QB JOIN data
        protected
            array<string|int, mixed>
    $QBJoin
     = []
    
    
    
    
    
$QBKeys
QB keys list of column names.
        protected
            array<int, string>
    $QBKeys
     = []
    
    
    
    
    
$QBLimit
QB LIMIT data
        protected
            bool|int
    $QBLimit
     = false
    
    
    
    
    
$QBOffset
QB OFFSET data
        protected
            bool|int
    $QBOffset
     = false
    
    
    
    
    
$QBOptions
QB Options data Holds additional options and data used to render SQL and is reset by resetWrite()
        protected
            array{updateFieldsAdditional?: array, tableIdentity?: string, updateFields?: array, constraints?: array, setQueryAsData?: string, sql?: string, alias?: string, fieldTypes?: array>} 
    $QBOptions
    
    
        fieldTypes: [ProtectedTableName => [FieldName => Type]]
$QBSelect
QB SELECT data
        protected
            array<string|int, mixed>
    $QBSelect
     = []
    
    
    
    
    
$QBSet
QB data sets
        protected
            array<string, string>|array<int, array<int, int|string>>
    $QBSet
     = []
    
    
    
    
    
$QBUnion
QB UNION data
        protected
            array<int, string>
    $QBUnion
     = []
    
    
    
    
    
$QBWhere
QB WHERE data
        protected
            array<string|int, mixed>
    $QBWhere
     = []
    
    
    
    
    
$QBWhereGroupCount
QB WHERE group count
        protected
            int
    $QBWhereGroupCount
     = 0
    
    
    
    
    
$QBWhereGroupStarted
QB WHERE group started flag
        protected
            bool
    $QBWhereGroupStarted
     = false
    
    
    
    
    
$randomKeyword
ORDER BY random keyword
        protected
            array<string|int, mixed>
    $randomKeyword
     = ['RANDOM()']
    
    
    
    
    
$resetDeleteData
Reset DELETE data flag
        protected
            bool
    $resetDeleteData
     = false
    
    
    
    
    
$supportedIgnoreStatements
Specifies which sql statements support the ignore option.
        protected
            array<string, string>
    $supportedIgnoreStatements
     = ['insert' => 'OR IGNORE']
    
    
    
    
    
$tableName
Name of the primary table for this instance.
        protected
            string
    $tableName
    
        Tracked separately because $QBFrom gets escaped and prefixed.
When $tableName to the constructor has multiple tables, the value is empty string.
$testMode
Builder testing mode status.
        protected
            bool
    $testMode
     = false
    
    
    
    
    
Methods
__construct()
Constructor
    public
                    __construct(array<string|int, mixed>|string|TableName $tableName, ConnectionInterface $db[, array<string|int, mixed>|null $options = null ]) : mixed
    Parameters
- $tableName : array<string|int, mixed>|string|TableName
- 
                    tablename or tablenames with or without aliases Examples of $tableName: mytable,jobs j,jobs j, users u,['jobs j','users u']
- $db : ConnectionInterface
- $options : array<string|int, mixed>|null = null
Tags
countAll()
Generates a platform-specific query string that counts all records in the particular table
    public
                    countAll([bool $reset = true ]) : int|string
    Parameters
- $reset : bool = true
Return values
int|stringcountAllResults()
Generates a platform-specific query string that counts all records returned by an Query Builder query.
    public
                    countAllResults([bool $reset = true ]) : int|string
    Parameters
- $reset : bool = true
Return values
int|stringdb()
Returns the current database connection
    public
                    db() : BaseConnection
    Return values
BaseConnectiondecrement()
Decrements a numeric column by the specified value.
    public
                    decrement(string $column[, int $value = 1 ]) : bool
    Parameters
- $column : string
- $value : int = 1
Return values
booldelete()
Compiles a delete string and runs the query
    public
                    delete([array<string|int, mixed>|RawSql|string $where = '' ][, int|null $limit = null ][, bool $resetData = true ]) : bool|string
    Parameters
- $where : array<string|int, mixed>|RawSql|string = ''
- $limit : int|null = null
- $resetData : bool = true
Tags
Return values
bool|string —Returns a SQL string if in test mode.
deleteBatch()
Sets data and calls batchExecute to run queries
    public
                    deleteBatch([array<string|int, mixed>|object|null $set = null ][, array<string|int, mixed>|RawSql|null $constraints = null ][, int $batchSize = 100 ]) : false|int|array<int, string>
    Parameters
- $set : array<string|int, mixed>|object|null = null
- 
                    a dataset 
- $constraints : array<string|int, mixed>|RawSql|null = null
- $batchSize : int = 100
Return values
false|int|array<int, string> —Number of rows affected or FALSE on failure, SQL array when testMode
distinct()
Sets a flag which tells the query string compiler to add DISTINCT
    public
                    distinct([bool $val = true ]) : $this
    Parameters
- $val : bool = true
Return values
$thisemptyTable()
Compiles a delete string and runs "DELETE FROM table"
    public
                    emptyTable() : bool|string
    Return values
bool|string —TRUE on success, FALSE on failure, string on testMode
from()
Generates the FROM portion of the query
    public
                    from(array<string|int, mixed>|string $from[, bool $overwrite = false ]) : $this
    Parameters
- $from : array<string|int, mixed>|string
- $overwrite : bool = false
Return values
$thisfromSubquery()
    public
                    fromSubquery(BaseBuilder $from, string $alias) : $this
    Parameters
- $from : BaseBuilder
- 
                    Expected subquery 
- $alias : string
- 
                    Subquery alias 
Return values
$thisget()
Compiles the select statement based on the other functions called and runs the query
    public
                    get([int|null $limit = null ][, int $offset = 0 ][, bool $reset = true ]) : false|ResultInterface
    Parameters
- $limit : int|null = null
- $offset : int = 0
- $reset : bool = true
Return values
false|ResultInterfacegetBinds()
Returns an array of bind values and their named parameters for binding in the Query object later.
    public
                    getBinds() : array<string|int, mixed>
    Return values
array<string|int, mixed>getCompiledDelete()
Compiles a delete query string and returns the sql
    public
                    getCompiledDelete([bool $reset = true ]) : string
    Parameters
- $reset : bool = true
Return values
stringgetCompiledInsert()
Compiles an insert query and returns the sql
    public
                    getCompiledInsert([bool $reset = true ]) : bool|string
    Parameters
- $reset : bool = true
Tags
Return values
bool|stringgetCompiledQBWhere()
Compiles the set conditions and returns the sql statement
    public
                    getCompiledQBWhere() : array<string|int, mixed>
    Return values
array<string|int, mixed>getCompiledSelect()
Compiles a SELECT query string and returns the sql.
    public
                    getCompiledSelect([bool $reset = true ]) : string
    Parameters
- $reset : bool = true
Return values
stringgetCompiledUpdate()
Compiles an update query and returns the sql
    public
                    getCompiledUpdate([bool $reset = true ]) : bool|string
    Parameters
- $reset : bool = true
Return values
bool|stringgetCompiledUpsert()
Compiles an upsert query and returns the sql
    public
                    getCompiledUpsert() : string
    Tags
Return values
stringgetSetData()
Returns the previously set() data, alternatively resetting it if needed.
    public
                    getSetData([bool $clean = false ]) : array<string|int, mixed>
    Parameters
- $clean : bool = false
Return values
array<string|int, mixed>getTable()
Gets the name of the primary table.
    public
                    getTable() : string
    Return values
stringgetWhere()
Allows the where clause, limit and offset to be added directly
    public
                    getWhere([array<string|int, mixed>|string $where = null ][, int|null $limit = null ][, int|null $offset = 0 ][, bool $reset = true ]) : ResultInterface
    Parameters
- $where : array<string|int, mixed>|string = null
- $limit : int|null = null
- $offset : int|null = 0
- $reset : bool = true
Return values
ResultInterfacegroupBy()
    public
                    groupBy(array<string|int, mixed>|string $by[, bool|null $escape = null ]) : $this
    Parameters
- $by : array<string|int, mixed>|string
- $escape : bool|null = null
Return values
$thisgroupEnd()
Ends a query group
    public
                    groupEnd() : $this
    Return values
$thisgroupStart()
Starts a query group.
    public
                    groupStart() : $this
    Return values
$thishaving()
Separates multiple calls with 'AND'.
    public
                    having(array<string|int, mixed>|RawSql|string $key[, mixed $value = null ][, bool|null $escape = null ]) : $this
    Parameters
- $key : array<string|int, mixed>|RawSql|string
- $value : mixed = null
- $escape : bool|null = null
Return values
$thishavingGroupEnd()
Ends a query group for HAVING clause.
    public
                    havingGroupEnd() : $this
    Return values
$thishavingGroupStart()
Starts a query group for HAVING clause.
    public
                    havingGroupStart() : $this
    Return values
$thishavingIn()
Generates a HAVING field IN('item', 'item') SQL query, joined with 'AND' if appropriate.
    public
                    havingIn([string|null $key = null ][, array<string|int, mixed>|BaseBuilder|callable(BaseBuilder): BaseBuilder|null $values = null ][, bool|null $escape = null ]) : $this
    Parameters
- $key : string|null = null
- $values : array<string|int, mixed>|BaseBuilder|callable(BaseBuilder): BaseBuilder|null = null
- 
                    The values searched on, or anonymous function with subquery 
- $escape : bool|null = null
Return values
$thishavingLike()
Generates a %LIKE% portion of the query.
    public
                    havingLike(array<string|int, mixed>|RawSql|string $field[, string $match = '' ][, string $side = 'both' ][, bool|null $escape = null ][, bool $insensitiveSearch = false ]) : $this
    Separates multiple calls with 'AND'.
Parameters
- $field : array<string|int, mixed>|RawSql|string
- $match : string = ''
- $side : string = 'both'
- $escape : bool|null = null
- $insensitiveSearch : bool = false
Return values
$thishavingNotIn()
Generates a HAVING field NOT IN('item', 'item') SQL query, joined with 'AND' if appropriate.
    public
                    havingNotIn([string|null $key = null ][, array<string|int, mixed>|BaseBuilder|callable(BaseBuilder): BaseBuilder|null $values = null ][, bool|null $escape = null ]) : $this
    Parameters
- $key : string|null = null
- $values : array<string|int, mixed>|BaseBuilder|callable(BaseBuilder): BaseBuilder|null = null
- 
                    The values searched on, or anonymous function with subquery 
- $escape : bool|null = null
Return values
$thisignore()
Ignore
    public
                    ignore([bool $ignore = true ]) : $this
    Set ignore Flag for next insert, update or delete query.
Parameters
- $ignore : bool = true
Return values
$thisincrement()
Increments a numeric column by the specified value.
    public
                    increment(string $column[, int $value = 1 ]) : bool
    Parameters
- $column : string
- $value : int = 1
Return values
boolinsert()
Compiles an insert string and runs the query
    public
                    insert([array<string|int, mixed>|object|null $set = null ][, bool|null $escape = null ]) : BaseResult|bool|Query
    Parameters
- $set : array<string|int, mixed>|object|null = null
- $escape : bool|null = null
Tags
Return values
BaseResult|bool|QueryinsertBatch()
Compiles batch insert strings and runs the queries
    public
                    insertBatch([array<string|int, mixed>|object|null $set = null ][, bool|null $escape = null ][, int $batchSize = 100 ]) : false|int|array<int, string>
    Parameters
- $set : array<string|int, mixed>|object|null = null
- 
                    a dataset 
- $escape : bool|null = null
- $batchSize : int = 100
Return values
false|int|array<int, string> —Number of rows inserted or FALSE on no data to perform an insert operation, SQL array when testMode
join()
Generates the JOIN portion of the query
    public
                    join(string $table, RawSql|string $cond[, string $type = '' ][, bool|null $escape = null ]) : $this
    Parameters
- $table : string
- $cond : RawSql|string
- $type : string = ''
- $escape : bool|null = null
Return values
$thislike()
Generates a %LIKE% portion of the query.
    public
                    like(array<string|int, mixed>|RawSql|string $field[, string $match = '' ][, string $side = 'both' ][, bool|null $escape = null ][, bool $insensitiveSearch = false ]) : $this
    Separates multiple calls with 'AND'.
Parameters
- $field : array<string|int, mixed>|RawSql|string
- $match : string = ''
- $side : string = 'both'
- $escape : bool|null = null
- $insensitiveSearch : bool = false
Return values
$thislimit()
    public
                    limit([int|null $value = null ][, int|null $offset = 0 ]) : $this
    Parameters
- $value : int|null = null
- $offset : int|null = 0
Return values
$thisnotGroupStart()
Starts a query group, but NOTs the group
    public
                    notGroupStart() : $this
    Return values
$thisnotHavingGroupStart()
Starts a query group for HAVING clause, but NOTs the group.
    public
                    notHavingGroupStart() : $this
    Return values
$thisnotHavingLike()
Generates a NOT LIKE portion of the query.
    public
                    notHavingLike(array<string|int, mixed>|RawSql|string $field[, string $match = '' ][, string $side = 'both' ][, bool|null $escape = null ][, bool $insensitiveSearch = false ]) : $this
    Separates multiple calls with 'AND'.
Parameters
- $field : array<string|int, mixed>|RawSql|string
- $match : string = ''
- $side : string = 'both'
- $escape : bool|null = null
- $insensitiveSearch : bool = false
Return values
$thisnotLike()
Generates a NOT LIKE portion of the query.
    public
                    notLike(array<string|int, mixed>|RawSql|string $field[, string $match = '' ][, string $side = 'both' ][, bool|null $escape = null ][, bool $insensitiveSearch = false ]) : $this
    Separates multiple calls with 'AND'.
Parameters
- $field : array<string|int, mixed>|RawSql|string
- $match : string = ''
- $side : string = 'both'
- $escape : bool|null = null
- $insensitiveSearch : bool = false
Return values
$thisoffset()
Sets the OFFSET value
    public
                    offset(int $offset) : $this
    Parameters
- $offset : int
Return values
$thisonConstraint()
Sets constraints for batch upsert, update
    public
                    onConstraint(array<string|int, mixed>|RawSql|string $set) : $this
    Parameters
- $set : array<string|int, mixed>|RawSql|string
- 
                    a string of columns, key value pairs, or RawSql 
Return values
$thisorderBy()
    public
                    orderBy(string $orderBy[, string $direction = '' ][, bool|null $escape = null ]) : $this
    Parameters
- $orderBy : string
- $direction : string = ''
- 
                    ASC, DESC or RANDOM 
- $escape : bool|null = null
Return values
$thisorGroupStart()
Starts a query group, but ORs the group
    public
                    orGroupStart() : $this
    Return values
$thisorHaving()
Separates multiple calls with 'OR'.
    public
                    orHaving(array<string|int, mixed>|RawSql|string $key[, mixed $value = null ][, bool|null $escape = null ]) : $this
    Parameters
- $key : array<string|int, mixed>|RawSql|string
- $value : mixed = null
- $escape : bool|null = null
Return values
$thisorHavingGroupStart()
Starts a query group for HAVING clause, but ORs the group.
    public
                    orHavingGroupStart() : $this
    Return values
$thisorHavingIn()
Generates a HAVING field IN('item', 'item') SQL query, joined with 'OR' if appropriate.
    public
                    orHavingIn([string|null $key = null ][, array<string|int, mixed>|BaseBuilder|callable(BaseBuilder): BaseBuilder|null $values = null ][, bool|null $escape = null ]) : $this
    Parameters
- $key : string|null = null
- $values : array<string|int, mixed>|BaseBuilder|callable(BaseBuilder): BaseBuilder|null = null
- 
                    The values searched on, or anonymous function with subquery 
- $escape : bool|null = null
Return values
$thisorHavingLike()
Generates a %LIKE% portion of the query.
    public
                    orHavingLike(array<string|int, mixed>|RawSql|string $field[, string $match = '' ][, string $side = 'both' ][, bool|null $escape = null ][, bool $insensitiveSearch = false ]) : $this
    Separates multiple calls with 'OR'.
Parameters
- $field : array<string|int, mixed>|RawSql|string
- $match : string = ''
- $side : string = 'both'
- $escape : bool|null = null
- $insensitiveSearch : bool = false
Return values
$thisorHavingNotIn()
Generates a HAVING field NOT IN('item', 'item') SQL query, joined with 'OR' if appropriate.
    public
                    orHavingNotIn([string|null $key = null ][, array<string|int, mixed>|BaseBuilder|callable(BaseBuilder): BaseBuilder|null $values = null ][, bool|null $escape = null ]) : $this
    Parameters
- $key : string|null = null
- $values : array<string|int, mixed>|BaseBuilder|callable(BaseBuilder): BaseBuilder|null = null
- 
                    The values searched on, or anonymous function with subquery 
- $escape : bool|null = null
Return values
$thisorLike()
Generates a %LIKE% portion of the query.
    public
                    orLike(array<string|int, mixed>|RawSql|string $field[, string $match = '' ][, string $side = 'both' ][, bool|null $escape = null ][, bool $insensitiveSearch = false ]) : $this
    Separates multiple calls with 'OR'.
Parameters
- $field : array<string|int, mixed>|RawSql|string
- $match : string = ''
- $side : string = 'both'
- $escape : bool|null = null
- $insensitiveSearch : bool = false
Return values
$thisorNotGroupStart()
Starts a query group, but OR NOTs the group
    public
                    orNotGroupStart() : $this
    Return values
$thisorNotHavingGroupStart()
Starts a query group for HAVING clause, but OR NOTs the group.
    public
                    orNotHavingGroupStart() : $this
    Return values
$thisorNotHavingLike()
Generates a NOT LIKE portion of the query.
    public
                    orNotHavingLike(array<string|int, mixed>|RawSql|string $field[, string $match = '' ][, string $side = 'both' ][, bool|null $escape = null ][, bool $insensitiveSearch = false ]) : $this
    Separates multiple calls with 'OR'.
Parameters
- $field : array<string|int, mixed>|RawSql|string
- $match : string = ''
- $side : string = 'both'
- $escape : bool|null = null
- $insensitiveSearch : bool = false
Return values
$thisorNotLike()
Generates a NOT LIKE portion of the query.
    public
                    orNotLike(array<string|int, mixed>|RawSql|string $field[, string $match = '' ][, string $side = 'both' ][, bool|null $escape = null ][, bool $insensitiveSearch = false ]) : $this
    Separates multiple calls with 'OR'.
Parameters
- $field : array<string|int, mixed>|RawSql|string
- $match : string = ''
- $side : string = 'both'
- $escape : bool|null = null
- $insensitiveSearch : bool = false
Return values
$thisorWhere()
OR WHERE
    public
                    orWhere(array<string|int, mixed>|RawSql|string $key[, mixed $value = null ][, bool|null $escape = null ]) : $this
    Generates the WHERE portion of the query. Separates multiple calls with 'OR'.
Parameters
- $key : array<string|int, mixed>|RawSql|string
- $value : mixed = null
- $escape : bool|null = null
Return values
$thisorWhereIn()
Generates a WHERE field IN('item', 'item') SQL query, joined with 'OR' if appropriate.
    public
                    orWhereIn([string|null $key = null ][, array<string|int, mixed>|BaseBuilder|callable(BaseBuilder): BaseBuilder|null $values = null ][, bool|null $escape = null ]) : $this
    Parameters
- $key : string|null = null
- $values : array<string|int, mixed>|BaseBuilder|callable(BaseBuilder): BaseBuilder|null = null
- 
                    The values searched on, or anonymous function with subquery 
- $escape : bool|null = null
Return values
$thisorWhereNotIn()
Generates a WHERE field NOT IN('item', 'item') SQL query, joined with 'OR' if appropriate.
    public
                    orWhereNotIn([string|null $key = null ][, array<string|int, mixed>|BaseBuilder|callable(BaseBuilder): BaseBuilder|null $values = null ][, bool|null $escape = null ]) : $this
    Parameters
- $key : string|null = null
- $values : array<string|int, mixed>|BaseBuilder|callable(BaseBuilder): BaseBuilder|null = null
- 
                    The values searched on, or anonymous function with subquery 
- $escape : bool|null = null
Return values
$thisreplace()
Compiles a replace into string and runs the query
    public
                    replace([array<string|int, mixed>|null $set = null ]) : BaseResult|false|Query|string
    Parameters
- $set : array<string|int, mixed>|null = null
Tags
Return values
BaseResult|false|Query|stringresetQuery()
Publicly-visible method to reset the QB values.
    public
                    resetQuery() : $this
    Return values
$thisselect()
Generates the SELECT portion of the query
    public
                    select([array<int, RawSql|string>|RawSql|string $select = '*' ][, bool|null $escape = null ]) : $this
    Parameters
- $select : array<int, RawSql|string>|RawSql|string = '*'
- $escape : bool|null = null
- 
                    Whether to protect identifiers 
Return values
$thisselectAvg()
Generates a SELECT AVG(field) portion of a query
    public
                    selectAvg([string $select = '' ][, string $alias = '' ]) : $this
    Parameters
- $select : string = ''
- $alias : string = ''
Return values
$thisselectCount()
Generates a SELECT COUNT(field) portion of a query
    public
                    selectCount([string $select = '' ][, string $alias = '' ]) : $this
    Parameters
- $select : string = ''
- $alias : string = ''
Return values
$thisselectMax()
Generates a SELECT MAX(field) portion of a query
    public
                    selectMax([string $select = '' ][, string $alias = '' ]) : $this
    Parameters
- $select : string = ''
- $alias : string = ''
Return values
$thisselectMin()
Generates a SELECT MIN(field) portion of a query
    public
                    selectMin([string $select = '' ][, string $alias = '' ]) : $this
    Parameters
- $select : string = ''
- $alias : string = ''
Return values
$thisselectSubquery()
Adds a subquery to the selection
    public
                    selectSubquery(BaseBuilder $subquery, string $as) : self
    Parameters
- $subquery : BaseBuilder
- $as : string
Return values
selfselectSum()
Generates a SELECT SUM(field) portion of a query
    public
                    selectSum([string $select = '' ][, string $alias = '' ]) : $this
    Parameters
- $select : string = ''
- $alias : string = ''
Return values
$thisset()
Allows key/value pairs to be set for insert(), update() or replace().
    public
                    set(array<string|int, mixed>|object|string $key[, mixed $value = '' ][, bool|null $escape = null ]) : $this
    Parameters
- $key : array<string|int, mixed>|object|string
- 
                    Field name, or an array of field/value pairs, or an object 
- $value : mixed = ''
- 
                    Field value, if $key is a single field 
- $escape : bool|null = null
- 
                    Whether to escape values 
Return values
$thissetData()
Allows a row or multiple rows to be set for batch inserts/upserts/updates
    public
                    setData(array<string|int, mixed>|object $set[, bool|null $escape = null ][, string $alias = '' ]) : $this|null
    Parameters
- $set : array<string|int, mixed>|object
- $escape : bool|null = null
- $alias : string = ''
- 
                    alias for sql table 
Return values
$this|nullsetInsertBatch()
Allows key/value pairs to be set for batch inserts
    public
                    setInsertBatch(mixed $key[, string $value = '' ][, bool|null $escape = null ]) : $this|null
    Parameters
- $key : mixed
- $value : string = ''
- $escape : bool|null = null
Return values
$this|nullsetQueryAsData()
Sets data source as a query for insertBatch()/updateBatch()/upsertBatch()/deleteBatch()
    public
                    setQueryAsData(BaseBuilder|RawSql $query[, string|null $alias = null ][, array<string|int, mixed>|string|null $columns = null ]) : BaseBuilder
    Parameters
- $query : BaseBuilder|RawSql
- $alias : string|null = null
- $columns : array<string|int, mixed>|string|null = null
- 
                    an array or comma delimited string of columns 
Return values
BaseBuildersetUpdateBatch()
Allows key/value pairs to be set for batch updating
    public
                    setUpdateBatch(array<string|int, mixed>|object $key[, string $index = '' ][, bool|null $escape = null ]) : $this
    Parameters
- $key : array<string|int, mixed>|object
- $index : string = ''
- $escape : bool|null = null
Tags
Return values
$thistestMode()
Sets a test mode status.
    public
                    testMode([bool $mode = true ]) : $this
    Parameters
- $mode : bool = true
Return values
$thistruncate()
Compiles a truncate string and runs the query If the database does not support the truncate() command This function maps to "DELETE FROM table"
    public
                    truncate() : bool|string
    Return values
bool|string —TRUE on success, FALSE on failure, string on testMode
union()
Add UNION statement
    public
                    union(BaseBuilder|callable(BaseBuilder): BaseBuilder $union) : $this
    Parameters
- $union : BaseBuilder|callable(BaseBuilder): BaseBuilder
Return values
$thisunionAll()
Add UNION ALL statement
    public
                    unionAll(BaseBuilder|callable(BaseBuilder): BaseBuilder $union) : $this
    Parameters
- $union : BaseBuilder|callable(BaseBuilder): BaseBuilder
Return values
$thisupdate()
Compiles an update string and runs the query.
    public
                    update([array<string|int, mixed>|object|null $set = null ][, array<string|int, mixed>|RawSql|string|null $where = null ][, int|null $limit = null ]) : bool
    Parameters
- $set : array<string|int, mixed>|object|null = null
- $where : array<string|int, mixed>|RawSql|string|null = null
- $limit : int|null = null
Tags
Return values
boolupdateBatch()
Sets data and calls batchExecute to run queries
    public
                    updateBatch([array<string|int, mixed>|object|null $set = null ][, array<string|int, mixed>|RawSql|string|null $constraints = null ][, int $batchSize = 100 ]) : false|int|array<int, string>
    Parameters
- $set : array<string|int, mixed>|object|null = null
- 
                    a dataset 
- $constraints : array<string|int, mixed>|RawSql|string|null = null
- $batchSize : int = 100
Return values
false|int|array<int, string> —Number of rows affected or FALSE on failure, SQL array when testMode
updateFields()
Sets update fields for upsert, update
    public
                    updateFields(array<int, RawSql>|array<int, string>|string $set[, bool $addToDefault = false ][, array<string|int, mixed>|null $ignore = null ]) : $this
    Parameters
- $set : array<int, RawSql>|array<int, string>|string
- $addToDefault : bool = false
- 
                    adds update fields to the default ones 
- $ignore : array<string|int, mixed>|null = null
- 
                    ignores items in set 
Return values
$thisupsert()
Converts call to batchUpsert
    public
                    upsert([array<string|int, mixed>|object|null $set = null ][, bool|null $escape = null ]) : false|int|array<int, string>
    Parameters
- $set : array<string|int, mixed>|object|null = null
- $escape : bool|null = null
Tags
Return values
false|int|array<int, string> —Number of affected rows or FALSE on failure, SQL array when testMode
upsertBatch()
Compiles batch upsert strings and runs the queries
    public
                    upsertBatch([array<string|int, mixed>|object|null $set = null ][, bool|null $escape = null ][, int $batchSize = 100 ]) : false|int|array<int, string>
    Parameters
- $set : array<string|int, mixed>|object|null = null
- 
                    a dataset 
- $escape : bool|null = null
- $batchSize : int = 100
Tags
Return values
false|int|array<int, string> —Number of affected rows or FALSE on failure, SQL array when testMode
when()
Only runs the query when $condition evaluates to true
    public
                    when(mixed $condition, callable(self, TWhen): mixed $callback[, callable(self): mixed|null $defaultCallback = null ]) : $this
    Parameters
- $condition : mixed
- $callback : callable(self, TWhen): mixed
- $defaultCallback : callable(self): mixed|null = null
Tags
Return values
$thiswhenNot()
Only runs the query when $condition evaluates to false
    public
                    whenNot(mixed $condition, callable(self, TWhenNot): mixed $callback[, callable(self): mixed|null $defaultCallback = null ]) : $this
    Parameters
- $condition : mixed
- $callback : callable(self, TWhenNot): mixed
- $defaultCallback : callable(self): mixed|null = null
Tags
Return values
$thiswhere()
Generates the WHERE portion of the query.
    public
                    where(array<string|int, mixed>|RawSql|string $key[, mixed $value = null ][, bool|null $escape = null ]) : $this
    Separates multiple calls with 'AND'.
Parameters
- $key : array<string|int, mixed>|RawSql|string
- $value : mixed = null
- $escape : bool|null = null
Return values
$thiswhereIn()
Generates a WHERE field IN('item', 'item') SQL query, joined with 'AND' if appropriate.
    public
                    whereIn([string|null $key = null ][, array<string|int, mixed>|BaseBuilder|callable(BaseBuilder): BaseBuilder|null $values = null ][, bool|null $escape = null ]) : $this
    Parameters
- $key : string|null = null
- $values : array<string|int, mixed>|BaseBuilder|callable(BaseBuilder): BaseBuilder|null = null
- 
                    The values searched on, or anonymous function with subquery 
- $escape : bool|null = null
Return values
$thiswhereNotIn()
Generates a WHERE field NOT IN('item', 'item') SQL query, joined with 'AND' if appropriate.
    public
                    whereNotIn([string|null $key = null ][, array<string|int, mixed>|BaseBuilder|callable(BaseBuilder): BaseBuilder|null $values = null ][, bool|null $escape = null ]) : $this
    Parameters
- $key : string|null = null
- $values : array<string|int, mixed>|BaseBuilder|callable(BaseBuilder): BaseBuilder|null = null
- 
                    The values searched on, or anonymous function with subquery 
- $escape : bool|null = null
Return values
$this_delete()
Generates a platform-specific delete string from the supplied data
    protected
                    _delete(string $table) : string
    Parameters
- $table : string
- 
                    Protected table name 
Return values
string_deleteBatch()
Generates a platform-specific batch update string from the supplied data
    protected
                    _deleteBatch(string $table, array<string|int, mixed> $keys, array<string|int, mixed> $values) : string
    Parameters
- $table : string
- 
                    Protected table name 
- $keys : array<string|int, mixed>
- 
                    QBKeys 
- $values : array<string|int, mixed>
- 
                    QBSet 
Return values
string_fromTables()
Groups tables in FROM clauses if needed, so there is no confusion about operator precedence.
    protected
                    _fromTables() : string
    Note: This is only used (and overridden) by MySQL and SQLSRV.
Return values
string_insert()
Generates a platform-specific insert string from the supplied data
    protected
                    _insert(string $table, array<int, string> $keys, array<int, int|string> $unescapedKeys) : string
    Parameters
- $table : string
- 
                    Protected table name 
- $keys : array<int, string>
- 
                    Keys of QBSet 
- $unescapedKeys : array<int, int|string>
- 
                    Values of QBSet 
Return values
string_insertBatch()
Generates a platform-specific insert string from the supplied data.
    protected
                    _insertBatch(string $table, array<int, string> $keys, array<int, array<int, int|string>> $values) : string
    Parameters
- $table : string
- 
                    Protected table name 
- $keys : array<int, string>
- 
                    QBKeys 
- $values : array<int, array<int, int|string>>
- 
                    QBSet 
Tags
Return values
string_like()
    protected
                    _like(array<string, string>|RawSql|string $field[, string $match = '' ][, string $type = 'AND ' ][, string $side = 'both' ][, string $not = '' ][, bool|null $escape = null ][, bool $insensitiveSearch = false ][, string $clause = 'QBWhere' ]) : $this
    Parameters
- $field : array<string, string>|RawSql|string
- $match : string = ''
- $type : string = 'AND '
- $side : string = 'both'
- $not : string = ''
- $escape : bool|null = null
- $insensitiveSearch : bool = false
- $clause : string = 'QBWhere'
Tags
Return values
$this_like_statement()
Platform independent LIKE statement builder.
    protected
                    _like_statement(string|null $prefix, string $column, string|null $not, string $bind[, bool $insensitiveSearch = false ]) : string
    Parameters
- $prefix : string|null
- $column : string
- $not : string|null
- $bind : string
- $insensitiveSearch : bool = false
Return values
string_limit()
Generates a platform-specific LIMIT clause.
    protected
                    _limit(string $sql[, bool $offsetIgnore = false ]) : string
    Parameters
- $sql : string
- $offsetIgnore : bool = false
Return values
string_replace()
Replace statement
    protected
                    _replace(string $table, array<string|int, mixed> $keys, array<string|int, mixed> $values) : string
    Generates a platform-specific replace string from the supplied data
Parameters
- $table : string
- 
                    Protected table name 
- $keys : array<string|int, mixed>
- 
                    Keys of QBSet 
- $values : array<string|int, mixed>
- 
                    Values of QBSet 
Return values
string_truncate()
Generates a platform-specific truncate string from the supplied data
    protected
                    _truncate(string $table) : string
    If the database does not support the TRUNCATE statement, then this method maps to 'DELETE FROM table'
Parameters
- $table : string
- 
                    Protected table name 
Return values
string_update()
Generates a platform-specific update string from the supplied data
    protected
                    _update(string $table, array<string, string> $values) : string
    Parameters
- $table : string
- 
                    Protected table name 
- $values : array<string, string>
- 
                    QBSet 
Return values
string_updateBatch()
Generates a platform-specific batch update string from the supplied data
    protected
                    _updateBatch(string $table, array<string|int, mixed> $keys, array<string|int, mixed> $values) : string
    Parameters
- $table : string
- 
                    Protected table name 
- $keys : array<string|int, mixed>
- 
                    QBKeys 
- $values : array<string|int, mixed>
- 
                    QBSet 
Return values
string_upsertBatch()
Generates a platform-specific upsertBatch string from the supplied data
    protected
                    _upsertBatch(string $table, array<string|int, mixed> $keys, array<string|int, mixed> $values) : string
    Parameters
- $table : string
- 
                    Protected table name 
- $keys : array<string|int, mixed>
- 
                    QBKeys 
- $values : array<string|int, mixed>
- 
                    QBSet 
Tags
Return values
string_whereIn()
    protected
                    _whereIn([non-empty-string|null $key = null ][, array<string|int, mixed>|BaseBuilder|callable(BaseBuilder): BaseBuilder|null $values = null ][, bool $not = false ][, string $type = 'AND ' ][, bool|null $escape = null ][, string $clause = 'QBWhere' ]) : $this
    Parameters
- $key : non-empty-string|null = null
- $values : array<string|int, mixed>|BaseBuilder|callable(BaseBuilder): BaseBuilder|null = null
- 
                    The values searched on, or anonymous function with subquery 
- $not : bool = false
- $type : string = 'AND '
- $escape : bool|null = null
- $clause : string = 'QBWhere'
Tags
Return values
$thisaddUnionStatement()
    protected
                    addUnionStatement(BaseBuilder|callable(BaseBuilder): BaseBuilder $union[, bool $all = false ]) : $this
    Parameters
- $union : BaseBuilder|callable(BaseBuilder): BaseBuilder
- $all : bool = false
Tags
Return values
$thisbatchExecute()
Compiles batch insert/update/upsert strings and runs the queries
    protected
                    batchExecute("_deleteBatch"|"_insertBatch"|"_updateBatch"|"_upsertBatch" $renderMethod[, int $batchSize = 100 ]) : false|int|array<int, string>
    Parameters
- $renderMethod : "_deleteBatch"|"_insertBatch"|"_updateBatch"|"_upsertBatch"
- $batchSize : int = 100
Tags
Return values
false|int|array<int, string> —Number of rows inserted or FALSE on failure, SQL array when testMode
batchObjectToArray()
Takes an object as input and converts the class variables to array key/vals
    protected
                    batchObjectToArray(array<string|int, mixed>|object $object) : array<string|int, mixed>
    Parameters
- $object : array<string|int, mixed>|object
Return values
array<string|int, mixed>buildSubquery()
    protected
                    buildSubquery(BaseBuilder|callable(BaseBuilder): BaseBuilder $builder[, bool $wrapped = false ][, string $alias = '' ]) : string
    Parameters
- $builder : BaseBuilder|callable(BaseBuilder): BaseBuilder
- $wrapped : bool = false
- 
                    Wrap the subquery in brackets 
- $alias : string = ''
- 
                    Subquery alias 
Return values
stringcleanClone()
Returns a clone of a Base Builder with reset query builder values.
    protected
                    cleanClone() : $this
    Return values
$thiscompileFinalQuery()
Returns a finalized, compiled query string with the bindings inserted and prefixes swapped out.
    protected
                    compileFinalQuery(string $sql) : string
    Parameters
- $sql : string
Return values
stringcompileGroupBy()
Escapes identifiers in GROUP BY statements at execution time.
    protected
                    compileGroupBy() : string
    Required so that aliases are tracked properly, regardless of whether groupBy() is called prior to from(), join() and prefixTable is added only if needed.
Return values
stringcompileIgnore()
Checks if the ignore option is supported by the Database Driver for the specific statement.
    protected
                    compileIgnore(string $statement) : string
    Parameters
- $statement : string
Return values
stringcompileOrderBy()
Escapes identifiers in ORDER BY statements at execution time.
    protected
                    compileOrderBy() : string
    Required so that aliases are tracked properly, regardless of whether orderBy() is called prior to from(), join() and prefixTable is added only if needed.
Return values
stringcompileSelect()
Compile the SELECT statement
    protected
                    compileSelect([mixed $selectOverride = false ]) : string
    Generates a query string based on which functions were used. Should not be called directly.
Parameters
- $selectOverride : mixed = false
Return values
stringcompileWhereHaving()
Escapes identifiers in WHERE and HAVING statements at execution time.
    protected
                    compileWhereHaving(string $qbKey) : string
    Required so that aliases are tracked properly, regardless of whether where(), orWhere(), having(), orHaving are called prior to from(), join() and prefixTable is added only if needed.
Parameters
- $qbKey : string
- 
                    'QBWhere' or 'QBHaving' 
Return values
string —SQL statement
createAliasFromTable()
Determines the alias name based on the table
    protected
                    createAliasFromTable(string $item) : string
    Parameters
- $item : string
Return values
stringfieldsFromQuery()
Gets column names from a select query
    protected
                    fieldsFromQuery(string $sql) : array<string|int, mixed>
    Parameters
- $sql : string
Return values
array<string|int, mixed>formatValues()
Converts value array of array to array of strings
    protected
                    formatValues(array<string|int, mixed> $values) : array<string|int, mixed>
    Parameters
- $values : array<string|int, mixed>
Return values
array<string|int, mixed>getOperator()
Returns the SQL string operator
    protected
                    getOperator(string $str[, bool $list = false ]) : array<string|int, mixed>|false|string
    Parameters
- $str : string
- $list : bool = false
Return values
array<string|int, mixed>|false|stringgroupEndPrepare()
Prepate a query group end.
    protected
                    groupEndPrepare([string $clause = 'QBWhere' ]) : $this
    Parameters
- $clause : string = 'QBWhere'
Return values
$thisgroupGetType()
    protected
                    groupGetType(string $type) : string
    Parameters
- $type : string
Tags
Return values
stringgroupStartPrepare()
Prepate a query group start.
    protected
                    groupStartPrepare([string $not = '' ][, string $type = 'AND ' ][, string $clause = 'QBWhere' ]) : $this
    Parameters
- $not : string = ''
- $type : string = 'AND '
- $clause : string = 'QBWhere'
Return values
$thishasOperator()
Tests whether the string has an SQL operator
    protected
                    hasOperator(string $str) : bool
    Parameters
- $str : string
Return values
boolisLiteral()
Determines if a string represents a literal value or a field name
    protected
                    isLiteral(string $str) : bool
    Parameters
- $str : string
Return values
boolisSubquery()
    protected
                    isSubquery(mixed $value) : bool
    Parameters
- $value : mixed
Return values
boolmaxMinAvgSum()
SELECT [MAX|MIN|AVG|SUM|COUNT]()
    protected
                    maxMinAvgSum([string $select = '' ][, string $alias = '' ][, string $type = 'MAX' ]) : $this
    Parameters
- $select : string = ''
- $alias : string = ''
- $type : string = 'MAX'
Tags
Return values
$thisobjectToArray()
Takes an object as input and converts the class variables to array key/vals
    protected
                    objectToArray(array<string|int, mixed>|object $object) : array<string|int, mixed>
    Parameters
- $object : array<string|int, mixed>|object
Return values
array<string|int, mixed>resetRun()
Resets the query builder values. Called by the get() function
    protected
                    resetRun(array<string|int, mixed> $qbResetItems) : void
    Parameters
- $qbResetItems : array<string|int, mixed>
- 
                    An array of fields to reset 
resetSelect()
Resets the query builder values. Called by the get() function
    protected
                    resetSelect() : void
    resetWrite()
Resets the query builder "write" values.
    protected
                    resetWrite() : void
    Called by the insert() update() insertBatch() updateBatch() and delete() functions
setBind()
Stores a bind value after ensuring that it's unique.
    protected
                    setBind(string $key[, mixed $value = null ][, bool $escape = true ]) : string
    While it might be nicer to have named keys for our binds array with PHP 7+ we get a huge memory/performance gain with indexed arrays instead, so lets take advantage of that here.
Parameters
- $key : string
- $value : mixed = null
- $escape : bool = true
Return values
stringtrackAliases()
Used to track SQL statements written with aliased tables.
    protected
                    trackAliases(array<string|int, mixed>|string $table) : string|null
    Parameters
- $table : array<string|int, mixed>|string
- 
                    The table to inspect 
Return values
string|nullunionInjection()
    protected
                    unionInjection(string $sql) : string
    Parameters
- $sql : string
Return values
stringvalidateInsert()
This method is used by both insert() and getCompiledInsert() to validate that the there data is actually being set and that table has been chosen to be inserted into.
    protected
                    validateInsert() : bool
    Tags
Return values
boolvalidateUpdate()
This method is used by both update() and getCompiledUpdate() to validate that data is actually being set and that a table has been chosen to be updated.
    protected
                    validateUpdate() : bool
    Tags
Return values
boolwhereHaving()
    protected
                    whereHaving(string $qbKey, array<string|int, mixed>|RawSql|string $key[, mixed $value = null ][, string $type = 'AND ' ][, bool|null $escape = null ]) : $this
    Parameters
- $qbKey : string
- $key : array<string|int, mixed>|RawSql|string
- $value : mixed = null
- $type : string = 'AND '
- $escape : bool|null = null