\CI_DB_query_builder

Query Builder Class

This is the platform-independent base Query Builder implementation class.

Summary

Methods
Properties
Constants
__construct()
initialize()
db_connect()
db_pconnect()
reconnect()
db_select()
error()
platform()
version()
query()
simple_query()
trans_off()
trans_strict()
trans_start()
trans_complete()
trans_status()
trans_begin()
trans_commit()
trans_rollback()
compile_binds()
is_write_type()
elapsed_time()
total_queries()
last_query()
escape()
escape_str()
escape_like_str()
primary()
count_all()
list_tables()
table_exists()
list_fields()
field_exists()
field_data()
escape_identifiers()
insert_string()
update_string()
call_function()
cache_set_path()
cache_on()
cache_off()
cache_delete()
cache_delete_all()
close()
display_error()
protect_identifiers()
select()
select_max()
select_min()
select_avg()
select_sum()
distinct()
from()
join()
where()
or_where()
where_in()
or_where_in()
where_not_in()
or_where_not_in()
having_in()
or_having_in()
having_not_in()
or_having_not_in()
like()
not_like()
or_like()
or_not_like()
group_start()
or_group_start()
not_group_start()
or_not_group_start()
group_end()
group_by()
having()
or_having()
order_by()
limit()
offset()
set()
get_compiled_select()
get()
count_all_results()
get_where()
insert_batch()
set_insert_batch()
get_compiled_insert()
insert()
replace()
get_compiled_update()
update()
update_batch()
set_update_batch()
empty_table()
truncate()
get_compiled_delete()
delete()
dbprefix()
set_dbprefix()
start_cache()
stop_cache()
flush_cache()
reset_query()
$dsn
$username
$password
$hostname
$database
$dbdriver
$subdriver
$dbprefix
$char_set
$dbcollat
$encrypt
$swap_pre
$port
$pconnect
$conn_id
$result_id
$db_debug
$benchmark
$query_count
$bind_marker
$save_queries
$queries
$query_times
$data_cache
$trans_enabled
$trans_strict
$cache_on
$cachedir
$cache_autodel
$CACHE
No constants found
_version()
_escape_str()
_insert()
_update()
_has_operator()
_get_operator()
_cache_init()
_close()
_reset_select()
_max_min_avg_sum()
_create_alias_from_table()
_wh()
_wh_in()
_like()
_group_get_type()
_limit()
_insert_batch()
_validate_insert()
_replace()
_from_tables()
_validate_update()
_update_batch()
_truncate()
_delete()
_track_aliases()
_compile_select()
_compile_wh()
_compile_group_by()
_compile_order_by()
_object_to_array()
_object_to_array_batch()
_merge_cache()
_is_literal()
_reset_run()
_reset_write()
$_trans_depth
$_trans_status
$_trans_failure
$_protect_identifiers
$_reserved_identifiers
$_escape_char
$_like_escape_str
$_like_escape_chr
$_random_keyword
$_count_string
$return_delete_sql
$reset_delete_data
$qb_select
$qb_distinct
$qb_from
$qb_join
$qb_where
$qb_groupby
$qb_having
$qb_keys
$qb_limit
$qb_offset
$qb_orderby
$qb_set
$qb_set_ub
$qb_aliased_tables
$qb_where_group_started
$qb_where_group_count
$qb_caching
$qb_cache_exists
$qb_cache_select
$qb_cache_from
$qb_cache_join
$qb_cache_aliased_tables
$qb_cache_where
$qb_cache_groupby
$qb_cache_having
$qb_cache_orderby
$qb_cache_set
$qb_no_escape
$qb_cache_no_escape
N/A
No private methods found
No private properties found
N/A

Properties

$dsn

$dsn : string

Data Source Name / Connect string

Type

string

$username

$username : string

Username

Type

string

$password

$password : string

Password

Type

string

$hostname

$hostname : string

Hostname

Type

string

$database

$database : string

Database name

Type

string

$dbdriver

$dbdriver : string

Database driver

Type

string

$subdriver

$subdriver : string

Sub-driver

Type

string

$dbprefix

$dbprefix : string

Table prefix

Type

string

$char_set

$char_set : string

Character set

Type

string

$dbcollat

$dbcollat : string

Collation

Type

string

$encrypt

$encrypt : mixed

Encryption flag/data

Type

mixed

$swap_pre

$swap_pre : string

Swap Prefix

Type

string

$port

$port : integer

Database port

Type

integer

$pconnect

$pconnect : boolean

Persistent connection flag

Type

boolean

$conn_id

$conn_id : object|resource

Connection ID

Type

object|resource

$result_id

$result_id : object|resource

Result ID

Type

object|resource

$db_debug

$db_debug : boolean

Debug flag

Whether to display error messages.

Type

boolean

$benchmark

$benchmark : integer

Benchmark time

Type

integer

$query_count

$query_count : integer

Executed queries count

Type

integer

$bind_marker

$bind_marker : string

Bind marker

Character used to identify values in a prepared statement.

Type

string

$save_queries

$save_queries : boolean

Save queries flag

Whether to keep an in-memory history of queries for debugging purposes.

Type

boolean

$queries

$queries : array<mixed,string>

Queries list

Type

array<mixed,string>

$query_times

$query_times : array

Query times

A list of times that queries took to execute.

Type

array

$data_cache

$data_cache : array

Data cache

An internal generic value cache.

Type

array

$trans_enabled

$trans_enabled : boolean

Transaction enabled flag

Type

boolean

$trans_strict

$trans_strict : boolean

Strict transaction mode flag

Type

boolean

$cache_on

$cache_on : boolean

Cache On flag

Type

boolean

$cachedir

$cachedir : boolean

Cache directory path

Type

boolean

$cache_autodel

$cache_autodel : boolean

Cache auto-delete flag

Type

boolean

$CACHE

$CACHE : object

DB Cache object

Type

object

$_trans_depth

$_trans_depth : integer

Transaction depth level

Type

integer

$_trans_status

$_trans_status : boolean

Transaction status flag

Used with transactions to determine if a rollback should occur.

Type

boolean

$_trans_failure

$_trans_failure : boolean

Transaction failure flag

Used with transactions to determine if a transaction has failed.

Type

boolean

$_protect_identifiers

$_protect_identifiers : boolean

Protect identifiers flag

Type

boolean

$_reserved_identifiers

$_reserved_identifiers : array<mixed,string>

List of reserved identifiers

Identifiers that must NOT be escaped.

Type

array<mixed,string>

$_escape_char

$_escape_char : string

Identifier escape character

Type

string

$_like_escape_str

$_like_escape_str : string

ESCAPE statement string

Type

string

$_like_escape_chr

$_like_escape_chr : string

ESCAPE character

Type

string

$_random_keyword

$_random_keyword : array

ORDER BY random keyword

Type

array

$_count_string

$_count_string : string

COUNT string

Type

string

$return_delete_sql

$return_delete_sql : boolean

Return DELETE SQL flag

Type

boolean

$reset_delete_data

$reset_delete_data : boolean

Reset DELETE data flag

Type

boolean

$qb_select

$qb_select : array

QB SELECT data

Type

array

$qb_distinct

$qb_distinct : boolean

QB DISTINCT flag

Type

boolean

$qb_from

$qb_from : array

QB FROM data

Type

array

$qb_join

$qb_join : array

QB JOIN data

Type

array

$qb_where

$qb_where : array

QB WHERE data

Type

array

$qb_groupby

$qb_groupby : array

QB GROUP BY data

Type

array

$qb_having

$qb_having : array

QB HAVING data

Type

array

$qb_keys

$qb_keys : array

QB keys

Type

array

$qb_limit

$qb_limit : integer

QB LIMIT data

Type

integer

$qb_offset

$qb_offset : integer

QB OFFSET data

Type

integer

$qb_orderby

$qb_orderby : array

QB ORDER BY data

Type

array

$qb_set

$qb_set : array

QB data sets

Type

array

$qb_set_ub

$qb_set_ub : array

QB data set for update_batch()

Type

array

$qb_aliased_tables

$qb_aliased_tables : array

QB aliased tables list

Type

array

$qb_where_group_started

$qb_where_group_started : boolean

QB WHERE group started flag

Type

boolean

$qb_where_group_count

$qb_where_group_count : integer

QB WHERE group count

Type

integer

$qb_caching

$qb_caching : boolean

QB Caching flag

Type

boolean

$qb_cache_exists

$qb_cache_exists : array

QB Cache exists list

Type

array

$qb_cache_select

$qb_cache_select : array

QB Cache SELECT data

Type

array

$qb_cache_from

$qb_cache_from : array

QB Cache FROM data

Type

array

$qb_cache_join

$qb_cache_join : array

QB Cache JOIN data

Type

array

$qb_cache_aliased_tables

$qb_cache_aliased_tables : array

QB Cache aliased tables list

Type

array

$qb_cache_where

$qb_cache_where : array

QB Cache WHERE data

Type

array

$qb_cache_groupby

$qb_cache_groupby : array

QB Cache GROUP BY data

Type

array

$qb_cache_having

$qb_cache_having : array

QB Cache HAVING data

Type

array

$qb_cache_orderby

$qb_cache_orderby : array

QB Cache ORDER BY data

Type

array

$qb_cache_set

$qb_cache_set : array

QB Cache data sets

Type

array

$qb_no_escape

$qb_no_escape : array

QB No Escape data

Type

array

$qb_cache_no_escape

$qb_cache_no_escape : array

QB Cache No Escape data

Type

array

Methods

__construct()

__construct(array  $params) : void

Class constructor

Parameters

array $params

initialize()

initialize() : void

Initialize Database Settings

Throws

\RuntimeException

In case of failure

db_connect()

db_connect() : mixed

DB connect

This is just a dummy method that all drivers will override.

Returns

mixed

db_pconnect()

db_pconnect() : mixed

Persistent database connection

Returns

mixed

reconnect()

reconnect() : void

Reconnect

Keep / reestablish the db connection if no queries have been sent for a length of time exceeding the server's idle timeout.

This is just a dummy method to allow drivers without such functionality to not declare it, while others will override it.

db_select()

db_select() : boolean

Select database

This is just a dummy method to allow drivers without such functionality to not declare it, while others will override it.

Returns

boolean

error()

error() : array

Last error

Returns

array

platform()

platform() : string

The name of the platform in use (mysql, mssql, etc.

..)

Returns

string

version()

version() : string

Database version number

Returns a string containing the version of the database being used. Most drivers will override this method.

Returns

string

query()

query(string  $sql, array  $binds = FALSE, boolean  $return_object = NULL) : mixed

Execute the query

Accepts an SQL string as input and returns a result object upon successful execution of a "read" type query. Returns boolean TRUE upon successful execution of a "write" type query. Returns boolean FALSE upon failure, and if the $db_debug variable is set to TRUE will raise an error.

Parameters

string $sql
array $binds

= FALSE An array of binding data

boolean $return_object

= NULL

Returns

mixed

simple_query()

simple_query(  $sql) : mixed

Simple Query This is a simplified version of the query() function. Internally we only use it when running transaction commands since they do not require all the features of the main query() function.

Parameters

$sql

Returns

mixed

trans_off()

trans_off() : void

Disable Transactions This permits transactions to be disabled at run-time.

trans_strict()

trans_strict(boolean  $mode = TRUE) : void

Enable/disable Transaction Strict Mode

When strict mode is enabled, if you are running multiple groups of transactions, if one group fails all subsequent groups will be rolled back.

If strict mode is disabled, each group is treated autonomously, meaning a failure of one group will not affect any others

Parameters

boolean $mode

= TRUE

trans_start()

trans_start(boolean  $test_mode = FALSE) : boolean

Start Transaction

Parameters

boolean $test_mode

= FALSE

Returns

boolean

trans_complete()

trans_complete() : boolean

Complete Transaction

Returns

boolean

trans_status()

trans_status() : boolean

Lets you retrieve the transaction flag to determine if it has failed

Returns

boolean

trans_begin()

trans_begin(boolean  $test_mode = FALSE) : boolean

Begin Transaction

Parameters

boolean $test_mode

Returns

boolean

trans_commit()

trans_commit() : boolean

Commit Transaction

Returns

boolean

trans_rollback()

trans_rollback() : boolean

Rollback Transaction

Returns

boolean

compile_binds()

compile_binds(  $sql,   $binds) : string

Compile Bindings

Parameters

$sql
$binds

Returns

string

is_write_type()

is_write_type(  $sql) : boolean

Determines if a query is a "write" type.

Parameters

$sql

Returns

boolean

elapsed_time()

elapsed_time(  $decimals = 6) : string

Calculate the aggregate query elapsed time

Parameters

$decimals

Returns

string

total_queries()

total_queries() : integer

Returns the total number of queries

Returns

integer

last_query()

last_query() : string

Returns the last query that was executed

Returns

string

escape()

escape(  $str) : mixed

"Smart" Escape String

Escapes data based on type Sets boolean and null types

Parameters

$str

Returns

mixed

escape_str()

escape_str(string|array<mixed,string>  $str, boolean  $like = FALSE) : string

Escape String

Parameters

string|array<mixed,string> $str

Input string

boolean $like

Whether or not the string will be used in a LIKE condition

Returns

string

escape_like_str()

escape_like_str(  $str) : mixed

Escape LIKE String

Calls the individual driver for platform specific escaping for LIKE conditions

Parameters

$str

Returns

mixed

primary()

primary(string  $table) : string

Primary

Retrieves the primary key. It assumes that the row in the first position is the primary key

Parameters

string $table

Table name

Returns

string

count_all()

count_all(  $table = '') : integer

"Count All" query

Generates a platform-specific query string that counts all records in the specified database

Parameters

$table

Returns

integer

list_tables()

list_tables(string  $constrain_by_prefix = FALSE) : array

Returns an array of table names

Parameters

string $constrain_by_prefix

= FALSE

Returns

array

table_exists()

table_exists(string  $table_name) : boolean

Determine if a particular table exists

Parameters

string $table_name

Returns

boolean

list_fields()

list_fields(string  $table) : array

Fetch Field Names

Parameters

string $table

Table name

Returns

array

field_exists()

field_exists(  $field_name,   $table_name) : boolean

Determine if a particular field exists

Parameters

$field_name
$table_name

Returns

boolean

field_data()

field_data(string  $table) : array

Returns an object with field data

Parameters

string $table

the table name

Returns

array

escape_identifiers()

escape_identifiers(mixed  $item, boolean  $split = TRUE) : mixed

Escape the SQL Identifiers

This function escapes column and table names

Parameters

mixed $item

Identifier to escape

boolean $split

Whether to split identifiers when a dot is encountered

Returns

mixed

insert_string()

insert_string(  $table,   $data) : string

Generate an insert string

Parameters

$table
$data

Returns

string

update_string()

update_string(  $table,   $data,   $where) : string

Generate an update string

Parameters

$table
$data
$where

Returns

string

call_function()

call_function(string  $function) : mixed

Enables a native PHP function to be run, using a platform agnostic wrapper.

Parameters

string $function

Function name

Returns

mixed

cache_set_path()

cache_set_path(  $path = '') : void

Set Cache Directory Path

Parameters

$path

cache_on()

cache_on() : boolean

Enable Query Caching

Returns

boolean —

cache_on value

cache_off()

cache_off() : boolean

Disable Query Caching

Returns

boolean —

cache_on value

cache_delete()

cache_delete(string  $segment_one = '', string  $segment_two = '') : boolean

Delete the cache files associated with a particular URI

Parameters

string $segment_one

= ''

string $segment_two

= ''

Returns

boolean

cache_delete_all()

cache_delete_all() : boolean

Delete All cache files

Returns

boolean

close()

close() : void

Close DB Connection

display_error()

display_error(  $error = '',   $swap = '',   $native = FALSE) : string

Display an error message

Parameters

$error
$swap
$native

Returns

string —

sends the application/views/errors/error_db.php template

protect_identifiers()

protect_identifiers(  $item,   $prefix_single = FALSE,   $protect_identifiers = NULL,   $field_exists = TRUE) : string

Protect Identifiers

This function is used extensively by the Query Builder class, and by a couple functions in this class. It takes a column or table name (optionally with an alias) and inserts the table prefix onto it. Some logic is necessary in order to deal with column names that include the path. Consider a query like this:

SELECT hostname.database.table.column AS c FROM hostname.database.table

Or a query with aliasing:

SELECT m.member_id, m.member_name FROM members AS m

Since the column name can include up to four segments (host, DB, table, column) or also have an alias prefix, we need to do a bit of work to figure this out and insert the table prefix (if it exists) in the proper position, and escape only the correct identifiers.

Parameters

$item
$prefix_single
$protect_identifiers
$field_exists

Returns

string

select()

select(  $select = '*',   $escape = NULL) : \CI_DB_query_builder

Select

Generates the SELECT portion of the query

Parameters

$select
$escape

Returns

\CI_DB_query_builder

select_max()

select_max(  $select = '',   $alias = '') : \CI_DB_query_builder

Select Max

Generates a SELECT MAX(field) portion of a query

Parameters

$select
$alias

Returns

\CI_DB_query_builder

select_min()

select_min(  $select = '',   $alias = '') : \CI_DB_query_builder

Select Min

Generates a SELECT MIN(field) portion of a query

Parameters

$select
$alias

Returns

\CI_DB_query_builder

select_avg()

select_avg(  $select = '',   $alias = '') : \CI_DB_query_builder

Select Average

Generates a SELECT AVG(field) portion of a query

Parameters

$select
$alias

Returns

\CI_DB_query_builder

select_sum()

select_sum(  $select = '',   $alias = '') : \CI_DB_query_builder

Select Sum

Generates a SELECT SUM(field) portion of a query

Parameters

$select
$alias

Returns

\CI_DB_query_builder

distinct()

distinct(boolean  $val = TRUE) : \CI_DB_query_builder

DISTINCT

Sets a flag which tells the query string compiler to add DISTINCT

Parameters

boolean $val

Returns

\CI_DB_query_builder

from()

from(mixed  $from) : \CI_DB_query_builder

From

Generates the FROM portion of the query

Parameters

mixed $from

can be a string or array

Returns

\CI_DB_query_builder

join()

join(  $table,   $cond,   $type = '',   $escape = NULL) : \CI_DB_query_builder

JOIN

Generates the JOIN portion of the query

Parameters

$table
$cond
$type
$escape

Returns

\CI_DB_query_builder

where()

where(  $key,   $value = NULL,   $escape = NULL) : \CI_DB_query_builder

WHERE

Generates the WHERE portion of the query. Separates multiple calls with 'AND'.

Parameters

$key
$value
$escape

Returns

\CI_DB_query_builder

or_where()

or_where(  $key,   $value = NULL,   $escape = NULL) : \CI_DB_query_builder

OR WHERE

Generates the WHERE portion of the query. Separates multiple calls with 'OR'.

Parameters

$key
$value
$escape

Returns

\CI_DB_query_builder

where_in()

where_in(string  $key = NULL, array  $values = NULL, boolean  $escape = NULL) : \CI_DB_query_builder

WHERE IN

Generates a WHERE field IN('item', 'item') SQL query, joined with 'AND' if appropriate.

Parameters

string $key

The field to search

array $values

The values searched on

boolean $escape

Returns

\CI_DB_query_builder

or_where_in()

or_where_in(string  $key = NULL, array  $values = NULL, boolean  $escape = NULL) : \CI_DB_query_builder

OR WHERE IN

Generates a WHERE field IN('item', 'item') SQL query, joined with 'OR' if appropriate.

Parameters

string $key

The field to search

array $values

The values searched on

boolean $escape

Returns

\CI_DB_query_builder

where_not_in()

where_not_in(string  $key = NULL, array  $values = NULL, boolean  $escape = NULL) : \CI_DB_query_builder

WHERE NOT IN

Generates a WHERE field NOT IN('item', 'item') SQL query, joined with 'AND' if appropriate.

Parameters

string $key

The field to search

array $values

The values searched on

boolean $escape

Returns

\CI_DB_query_builder

or_where_not_in()

or_where_not_in(string  $key = NULL, array  $values = NULL, boolean  $escape = NULL) : \CI_DB_query_builder

OR WHERE NOT IN

Generates a WHERE field NOT IN('item', 'item') SQL query, joined with 'OR' if appropriate.

Parameters

string $key

The field to search

array $values

The values searched on

boolean $escape

Returns

\CI_DB_query_builder

having_in()

having_in(string  $key = NULL, array  $values = NULL, boolean  $escape = NULL) : \CI_DB_query_builder

HAVING IN

Generates a HAVING field IN('item', 'item') SQL query, joined with 'AND' if appropriate.

Parameters

string $key

The field to search

array $values

The values searched on

boolean $escape

Returns

\CI_DB_query_builder

or_having_in()

or_having_in(string  $key = NULL, array  $values = NULL, boolean  $escape = NULL) : \CI_DB_query_builder

OR HAVING IN

Generates a HAVING field IN('item', 'item') SQL query, joined with 'OR' if appropriate.

Parameters

string $key

The field to search

array $values

The values searched on

boolean $escape

Returns

\CI_DB_query_builder

having_not_in()

having_not_in(string  $key = NULL, array  $values = NULL, boolean  $escape = NULL) : \CI_DB_query_builder

HAVING NOT IN

Generates a HAVING field NOT IN('item', 'item') SQL query, joined with 'AND' if appropriate.

Parameters

string $key

The field to search

array $values

The values searched on

boolean $escape

Returns

\CI_DB_query_builder

or_having_not_in()

or_having_not_in(string  $key = NULL, array  $values = NULL, boolean  $escape = NULL) : \CI_DB_query_builder

OR HAVING NOT IN

Generates a HAVING field NOT IN('item', 'item') SQL query, joined with 'OR' if appropriate.

Parameters

string $key

The field to search

array $values

The values searched on

boolean $escape

Returns

\CI_DB_query_builder

like()

like(mixed  $field, string  $match = '', string  $side = 'both', boolean  $escape = NULL) : \CI_DB_query_builder

LIKE

Generates a %LIKE% portion of the query. Separates multiple calls with 'AND'.

Parameters

mixed $field
string $match
string $side
boolean $escape

Returns

\CI_DB_query_builder

not_like()

not_like(mixed  $field, string  $match = '', string  $side = 'both', boolean  $escape = NULL) : \CI_DB_query_builder

NOT LIKE

Generates a NOT LIKE portion of the query. Separates multiple calls with 'AND'.

Parameters

mixed $field
string $match
string $side
boolean $escape

Returns

\CI_DB_query_builder

or_like()

or_like(mixed  $field, string  $match = '', string  $side = 'both', boolean  $escape = NULL) : \CI_DB_query_builder

OR LIKE

Generates a %LIKE% portion of the query. Separates multiple calls with 'OR'.

Parameters

mixed $field
string $match
string $side
boolean $escape

Returns

\CI_DB_query_builder

or_not_like()

or_not_like(mixed  $field, string  $match = '', string  $side = 'both', boolean  $escape = NULL) : \CI_DB_query_builder

OR NOT LIKE

Generates a NOT LIKE portion of the query. Separates multiple calls with 'OR'.

Parameters

mixed $field
string $match
string $side
boolean $escape

Returns

\CI_DB_query_builder

group_start()

group_start(string  $not = '', string  $type = 'AND ') : \CI_DB_query_builder

Starts a query group.

Parameters

string $not

(Internal use only)

string $type

(Internal use only)

Returns

\CI_DB_query_builder

or_group_start()

or_group_start() : \CI_DB_query_builder

Starts a query group, but ORs the group

Returns

\CI_DB_query_builder

not_group_start()

not_group_start() : \CI_DB_query_builder

Starts a query group, but NOTs the group

Returns

\CI_DB_query_builder

or_not_group_start()

or_not_group_start() : \CI_DB_query_builder

Starts a query group, but OR NOTs the group

Returns

\CI_DB_query_builder

group_by()

group_by(string  $by, boolean  $escape = NULL) : \CI_DB_query_builder

GROUP BY

Parameters

string $by
boolean $escape

Returns

\CI_DB_query_builder

having()

having(string  $key, string  $value = NULL, boolean  $escape = NULL) : \CI_DB_query_builder

HAVING

Separates multiple calls with 'AND'.

Parameters

string $key
string $value
boolean $escape

Returns

\CI_DB_query_builder

or_having()

or_having(string  $key, string  $value = NULL, boolean  $escape = NULL) : \CI_DB_query_builder

OR HAVING

Separates multiple calls with 'OR'.

Parameters

string $key
string $value
boolean $escape

Returns

\CI_DB_query_builder

order_by()

order_by(string  $orderby, string  $direction = '', boolean  $escape = NULL) : \CI_DB_query_builder

ORDER BY

Parameters

string $orderby
string $direction

ASC, DESC or RANDOM

boolean $escape

Returns

\CI_DB_query_builder

limit()

limit(integer  $value, integer  $offset) : \CI_DB_query_builder

LIMIT

Parameters

integer $value

LIMIT value

integer $offset

OFFSET value

Returns

\CI_DB_query_builder

offset()

offset(integer  $offset) : \CI_DB_query_builder

Sets the OFFSET value

Parameters

integer $offset

OFFSET value

Returns

\CI_DB_query_builder

set()

set(  $key,   $value = '',   $escape = NULL) : \CI_DB_query_builder

The "set" function.

Allows key/value pairs to be set for inserting or updating

Parameters

$key
$value
$escape

Returns

\CI_DB_query_builder

get_compiled_select()

get_compiled_select(  $table = '',   $reset = TRUE) : string

Get SELECT query string

Compiles a SELECT query string and returns the sql.

Parameters

$table
$reset

Returns

string

get()

get(  $table = '',   $limit = NULL,   $offset = NULL) : \CI_DB_result

Get

Compiles the select statement based on the other functions called and runs the query

Parameters

$table
$limit
$offset

Returns

\CI_DB_result

count_all_results()

count_all_results(  $table = '',   $reset = TRUE) : integer

"Count All Results" query

Generates a platform-specific query string that counts all records returned by an Query Builder query.

Parameters

$table
$reset

Returns

integer

get_where()

get_where(string  $table = '', string  $where = NULL, integer  $limit = NULL, integer  $offset = NULL) : \CI_DB_result

get_where()

Allows the where clause, limit and offset to be added directly

Parameters

string $table
string $where
integer $limit
integer $offset

Returns

\CI_DB_result

insert_batch()

insert_batch(string  $table, array  $set = NULL, boolean  $escape = NULL,   $batch_size = 100) : integer

Insert_Batch

Compiles batch insert strings and runs the queries

Parameters

string $table

Table to insert into

array $set

An associative array of insert values

boolean $escape

Whether to escape values and identifiers

$batch_size

Returns

integer —

Number of rows inserted or FALSE on failure

set_insert_batch()

set_insert_batch(  $key,   $value = '',   $escape = NULL) : \CI_DB_query_builder

The "set_insert_batch" function. Allows key/value pairs to be set for batch inserts

Parameters

$key
$value
$escape

Returns

\CI_DB_query_builder

get_compiled_insert()

get_compiled_insert(  $table = '',   $reset = TRUE) : string

Get INSERT query string

Compiles an insert query and returns the sql

Parameters

$table
$reset

Returns

string

insert()

insert(  $table = '',   $set = NULL, boolean  $escape = NULL) : boolean

Insert

Compiles an insert string and runs the query

Parameters

$table
$set
boolean $escape

Whether to escape values and identifiers

Returns

boolean —

TRUE on success, FALSE on failure

replace()

replace(  $table = '',   $set = NULL) : boolean

Replace

Compiles an replace into string and runs the query

Parameters

$table
$set

Returns

boolean —

TRUE on success, FALSE on failure

get_compiled_update()

get_compiled_update(  $table = '',   $reset = TRUE) : string

Get UPDATE query string

Compiles an update query and returns the sql

Parameters

$table
$reset

Returns

string

update()

update(string  $table = '', array  $set = NULL, mixed  $where = NULL, integer  $limit = NULL) : boolean

UPDATE

Compiles an update string and runs the query.

Parameters

string $table
array $set

An associative array of update values

mixed $where
integer $limit

Returns

boolean —

TRUE on success, FALSE on failure

update_batch()

update_batch(  $table,   $set = NULL,   $index = NULL,   $batch_size = 100) : integer

Update_Batch

Compiles an update string and runs the query

Parameters

$table
$set
$index
$batch_size

Returns

integer —

number of rows affected or FALSE on failure

set_update_batch()

set_update_batch(  $key,   $index = '',   $escape = NULL) : \CI_DB_query_builder

The "set_update_batch" function. Allows key/value pairs to be set for batch updating

Parameters

$key
$index
$escape

Returns

\CI_DB_query_builder

empty_table()

empty_table(  $table = '') : boolean

Empty Table

Compiles a delete string and runs "DELETE FROM table"

Parameters

$table

Returns

boolean —

TRUE on success, FALSE on failure

truncate()

truncate(  $table = '') : boolean

Truncate

Compiles a truncate string and runs the query If the database does not support the truncate() command This function maps to "DELETE FROM table"

Parameters

$table

Returns

boolean —

TRUE on success, FALSE on failure

get_compiled_delete()

get_compiled_delete(  $table = '',   $reset = TRUE) : string

Get DELETE query string

Compiles a delete query string and returns the sql

Parameters

$table
$reset

Returns

string

delete()

delete(  $table = '',   $where = '',   $limit = NULL,   $reset_data = TRUE) : mixed

Delete

Compiles a delete string and runs the query

Parameters

$table
$where
$limit
$reset_data

Returns

mixed

dbprefix()

dbprefix(  $table = '') : string

DB Prefix

Prepends a database prefix if one exists in configuration

Parameters

$table

Returns

string

set_dbprefix()

set_dbprefix(  $prefix = '') : string

Set DB Prefix

Set's the DB Prefix to something new without needing to reconnect

Parameters

$prefix

Returns

string

start_cache()

start_cache() : \CI_DB_query_builder

Start Cache

Starts QB caching

Returns

\CI_DB_query_builder

stop_cache()

stop_cache() : \CI_DB_query_builder

Stop Cache

Stops QB caching

Returns

\CI_DB_query_builder

flush_cache()

flush_cache() : \CI_DB_query_builder

Flush Cache

Empties the QB cache

Returns

\CI_DB_query_builder

reset_query()

reset_query() : \CI_DB_query_builder

Reset Query Builder values.

Publicly-visible method to reset the QB values.

Returns

\CI_DB_query_builder

_version()

_version() : string

Version number query string

Returns

string

_escape_str()

_escape_str(  $str) : string

Platform-dependent string escape

Parameters

$str

Returns

string

_insert()

_insert(  $table,   $keys,   $values) : string

Insert statement

Generates a platform-specific insert string from the supplied data

Parameters

$table
$keys
$values

Returns

string

_update()

_update(  $table,   $values) : string

Update statement

Generates a platform-specific update string from the supplied data

Parameters

$table
$values

Returns

string

_has_operator()

_has_operator(  $str) : boolean

Tests whether the string has an SQL operator

Parameters

$str

Returns

boolean

_get_operator()

_get_operator(  $str) : string

Returns the SQL string operator

Parameters

$str

Returns

string

_cache_init()

_cache_init() : boolean

Initialize the Cache Class

Returns

boolean

_close()

_close() : void

Close DB Connection

This method would be overridden by most of the drivers.

_reset_select()

_reset_select() : void

Resets the query builder values. Called by the get() function

_max_min_avg_sum()

_max_min_avg_sum(string  $select = '', string  $alias = '', string  $type = 'MAX') : \CI_DB_query_builder

SELECT [MAX|MIN|AVG|SUM]()

Parameters

string $select

Field name

string $alias
string $type

Returns

\CI_DB_query_builder

_create_alias_from_table()

_create_alias_from_table(string  $item) : string

Determines the alias name based on the table

Parameters

string $item

Returns

string

_wh()

_wh(string  $qb_key, mixed  $key, mixed  $value = NULL, string  $type = 'AND ', boolean  $escape = NULL) : \CI_DB_query_builder

WHERE, HAVING

Parameters

string $qb_key

'qb_where' or 'qb_having'

mixed $key
mixed $value
string $type
boolean $escape

Returns

\CI_DB_query_builder

_wh_in()

_wh_in(string  $qb_key, string  $key = NULL, array  $values = NULL, boolean  $not = FALSE, string  $type = 'AND ', boolean  $escape = NULL) : \CI_DB_query_builder

Internal WHERE/HAVING IN

Parameters

string $qb_key

'qb_where' or 'qb_having'

string $key

The field to search

array $values

The values searched on

boolean $not

If the statement would be IN or NOT IN

string $type
boolean $escape

Returns

\CI_DB_query_builder

_like()

_like(mixed  $field, string  $match = '', string  $type = 'AND ', string  $side = 'both', string  $not = '', boolean  $escape = NULL) : \CI_DB_query_builder

Internal LIKE

Parameters

mixed $field
string $match
string $type
string $side
string $not
boolean $escape

Returns

\CI_DB_query_builder

_group_get_type()

_group_get_type(string  $type) : string

Group_get_type

Parameters

string $type

Returns

string

_limit()

_limit(string  $sql) : string

LIMIT string

Generates a platform-specific LIMIT clause.

Parameters

string $sql

SQL Query

Returns

string

_insert_batch()

_insert_batch(string  $table, array  $keys, array  $values) : string

Insert batch statement

Generates a platform-specific insert string from the supplied data.

Parameters

string $table

Table name

array $keys

INSERT keys

array $values

INSERT values

Returns

string

_validate_insert()

_validate_insert(  $table = '') : string

Validate Insert

This method is used by both insert() and get_compiled_insert() to validate that the there data is actually being set and that table has been chosen to be inserted into.

Parameters

$table

Returns

string

_replace()

_replace(  $table,   $keys,   $values) : string

Replace statement

Generates a platform-specific replace string from the supplied data

Parameters

$table
$keys
$values

Returns

string

_from_tables()

_from_tables() : string

FROM tables

Groups tables in FROM clauses if needed, so there is no confusion about operator precedence.

Note: This is only used (and overridden) by MySQL and CUBRID.

Returns

string

_validate_update()

_validate_update(  $table) : boolean

Validate Update

This method is used by both update() and get_compiled_update() to validate that data is actually being set and that a table has been chosen to be update.

Parameters

$table

Returns

boolean

_update_batch()

_update_batch(string  $table, array  $values, string  $index) : string

Update_Batch statement

Generates a platform-specific batch update string from the supplied data

Parameters

string $table

Table name

array $values

Update data

string $index

WHERE key

Returns

string

_truncate()

_truncate(  $table) : string

Truncate statement

Generates a platform-specific truncate string from the supplied data

If the database does not support the truncate() command, then this method maps to 'DELETE FROM table'

Parameters

$table

Returns

string

_delete()

_delete(  $table) : string

Delete statement

Generates a platform-specific delete string from the supplied data

Parameters

$table

Returns

string

_track_aliases()

_track_aliases(  $table) : string

Track Aliases

Used to track SQL statements written with aliased tables.

Parameters

$table

Returns

string

_compile_select()

_compile_select(boolean  $select_override = FALSE) : string

Compile the SELECT statement

Generates a query string based on which functions were used. Should not be called directly.

Parameters

boolean $select_override

Returns

string

_compile_wh()

_compile_wh(string  $qb_key) : string

Compile WHERE, HAVING statements

Escapes identifiers in WHERE and HAVING statements at execution time.

Required so that aliases are tracked properly, regardless of whether where(), or_where(), having(), or_having are called prior to from(), join() and dbprefix is added only if needed.

Parameters

string $qb_key

'qb_where' or 'qb_having'

Returns

string —

SQL statement

_compile_group_by()

_compile_group_by() : string

Compile GROUP BY

Escapes identifiers in GROUP BY statements at execution time.

Required so that aliases are tracked properly, regardless of whether group_by() is called prior to from(), join() and dbprefix is added only if needed.

Returns

string —

SQL statement

_compile_order_by()

_compile_order_by() : string

Compile ORDER BY

Escapes identifiers in ORDER BY statements at execution time.

Required so that aliases are tracked properly, regardless of whether order_by() is called prior to from(), join() and dbprefix is added only if needed.

Returns

string —

SQL statement

_object_to_array()

_object_to_array(  $object) : array

Object to Array

Takes an object as input and converts the class variables to array key/vals

Parameters

$object

Returns

array

_object_to_array_batch()

_object_to_array_batch(  $object) : array

Object to Array

Takes an object as input and converts the class variables to array key/vals

Parameters

$object

Returns

array

_merge_cache()

_merge_cache() : void

Merge Cache

When called, this function merges any cached QB arrays with locally called ones.

_is_literal()

_is_literal(string  $str) : boolean

Is literal

Determines if a string represents a literal value or a field name

Parameters

string $str

Returns

boolean

_reset_run()

_reset_run(  $qb_reset_items) : void

Resets the query builder values. Called by the get() function

Parameters

$qb_reset_items

_reset_write()

_reset_write() : void

Resets the query builder "write" values.

Called by the insert() update() insert_batch() update_batch() and delete() functions