$dsn
$dsn : string
Data Source Name / Connect string
Query Builder Class
This is the platform-independent base Query Builder implementation class.
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.
string | $sql | |
array | $binds | = FALSE An array of binding data |
boolean | $return_object | = NULL |
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
boolean | $mode | = TRUE |
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.
$item | ||
$prefix_single | ||
$protect_identifiers | ||
$field_exists |
select( $select = '*', $escape = NULL) : \CI_DB_query_builder
Select
Generates the SELECT portion of the query
$select | ||
$escape |
select_max( $select = '', $alias = '') : \CI_DB_query_builder
Select Max
Generates a SELECT MAX(field) portion of a query
$select | ||
$alias |
select_min( $select = '', $alias = '') : \CI_DB_query_builder
Select Min
Generates a SELECT MIN(field) portion of a query
$select | ||
$alias |
select_avg( $select = '', $alias = '') : \CI_DB_query_builder
Select Average
Generates a SELECT AVG(field) portion of a query
$select | ||
$alias |
select_sum( $select = '', $alias = '') : \CI_DB_query_builder
Select Sum
Generates a SELECT SUM(field) portion of a query
$select | ||
$alias |
distinct(boolean $val = TRUE) : \CI_DB_query_builder
DISTINCT
Sets a flag which tells the query string compiler to add DISTINCT
boolean | $val |
from(mixed $from) : \CI_DB_query_builder
From
Generates the FROM portion of the query
mixed | $from | can be a string or array |
join( $table, $cond, $type = '', $escape = NULL) : \CI_DB_query_builder
JOIN
Generates the JOIN portion of the query
$table | ||
$cond | ||
$type | ||
$escape |
where( $key, $value = NULL, $escape = NULL) : \CI_DB_query_builder
WHERE
Generates the WHERE portion of the query. Separates multiple calls with 'AND'.
$key | ||
$value | ||
$escape |
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'.
$key | ||
$value | ||
$escape |
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.
string | $key | The field to search |
array | $values | The values searched on |
boolean | $escape |
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.
string | $key | The field to search |
array | $values | The values searched on |
boolean | $escape |
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.
string | $key | The field to search |
array | $values | The values searched on |
boolean | $escape |
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.
string | $key | The field to search |
array | $values | The values searched on |
boolean | $escape |
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.
string | $key | The field to search |
array | $values | The values searched on |
boolean | $escape |
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.
string | $key | The field to search |
array | $values | The values searched on |
boolean | $escape |
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.
string | $key | The field to search |
array | $values | The values searched on |
boolean | $escape |
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.
string | $key | The field to search |
array | $values | The values searched on |
boolean | $escape |
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'.
mixed | $field | |
string | $match | |
string | $side | |
boolean | $escape |
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'.
mixed | $field | |
string | $match | |
string | $side | |
boolean | $escape |
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'.
mixed | $field | |
string | $match | |
string | $side | |
boolean | $escape |
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'.
mixed | $field | |
string | $match | |
string | $side | |
boolean | $escape |
group_start(string $not = '', string $type = 'AND ') : \CI_DB_query_builder
Starts a query group.
string | $not | (Internal use only) |
string | $type | (Internal use only) |
or_group_start() : \CI_DB_query_builder
Starts a query group, but ORs the group
not_group_start() : \CI_DB_query_builder
Starts a query group, but NOTs the group
or_not_group_start() : \CI_DB_query_builder
Starts a query group, but OR NOTs the group
group_end() : \CI_DB_query_builder
Ends a query group
group_by(string $by, boolean $escape = NULL) : \CI_DB_query_builder
GROUP BY
string | $by | |
boolean | $escape |
having(string $key, string $value = NULL, boolean $escape = NULL) : \CI_DB_query_builder
HAVING
Separates multiple calls with 'AND'.
string | $key | |
string | $value | |
boolean | $escape |
or_having(string $key, string $value = NULL, boolean $escape = NULL) : \CI_DB_query_builder
OR HAVING
Separates multiple calls with 'OR'.
string | $key | |
string | $value | |
boolean | $escape |
order_by(string $orderby, string $direction = '', boolean $escape = NULL) : \CI_DB_query_builder
ORDER BY
string | $orderby | |
string | $direction | ASC, DESC or RANDOM |
boolean | $escape |
limit(integer $value, integer $offset) : \CI_DB_query_builder
LIMIT
integer | $value | LIMIT value |
integer | $offset | OFFSET value |
offset(integer $offset) : \CI_DB_query_builder
Sets the OFFSET value
integer | $offset | OFFSET value |
set( $key, $value = '', $escape = NULL) : \CI_DB_query_builder
The "set" function.
Allows key/value pairs to be set for inserting or updating
$key | ||
$value | ||
$escape |
get( $table = '', $limit = NULL, $offset = NULL) : \CI_DB_result
Get
Compiles the select statement based on the other functions called and runs the query
$table | ||
$limit | ||
$offset |
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
string | $table | |
string | $where | |
integer | $limit | |
integer | $offset |
insert_batch(string $table, array $set = NULL, boolean $escape = NULL, $batch_size = 100) : integer
Insert_Batch
Compiles batch insert strings and runs the queries
string | $table | Table to insert into |
array | $set | An associative array of insert values |
boolean | $escape | Whether to escape values and identifiers |
$batch_size |
Number of rows inserted or FALSE on failure
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
$key | ||
$value | ||
$escape |
update(string $table = '', array $set = NULL, mixed $where = NULL, integer $limit = NULL) : boolean
UPDATE
Compiles an update string and runs the query.
string | $table | |
array | $set | An associative array of update values |
mixed | $where | |
integer | $limit |
TRUE on success, FALSE on failure
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
$key | ||
$index | ||
$escape |
start_cache() : \CI_DB_query_builder
Start Cache
Starts QB caching
stop_cache() : \CI_DB_query_builder
Stop Cache
Stops QB caching
flush_cache() : \CI_DB_query_builder
Flush Cache
Empties the QB cache
reset_query() : \CI_DB_query_builder
Reset Query Builder values.
Publicly-visible method to reset the QB values.
_max_min_avg_sum(string $select = '', string $alias = '', string $type = 'MAX') : \CI_DB_query_builder
SELECT [MAX|MIN|AVG|SUM]()
string | $select | Field name |
string | $alias | |
string | $type |
_wh(string $qb_key, mixed $key, mixed $value = NULL, string $type = 'AND ', boolean $escape = NULL) : \CI_DB_query_builder
WHERE, HAVING
string | $qb_key | 'qb_where' or 'qb_having' |
mixed | $key | |
mixed | $value | |
string | $type | |
boolean | $escape |
_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
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 |
_like(mixed $field, string $match = '', string $type = 'AND ', string $side = 'both', string $not = '', boolean $escape = NULL) : \CI_DB_query_builder
Internal LIKE
mixed | $field | |
string | $match | |
string | $type | |
string | $side | |
string | $not | |
boolean | $escape |
_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.
string | $qb_key | 'qb_where' or 'qb_having' |
SQL statement
_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.
SQL statement
_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.
SQL statement