\CI_DB_mysqli_driver

MySQLi Database Adapter Class

Note: _DB is an extender class that the app controller creates dynamically based on whether the query builder class is being used or not.

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()
affected_rows()
insert_id()
$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
$compress
$delete_hack
$stricton
No constants found
_version()
_escape_str()
_insert()
_update()
_has_operator()
_get_operator()
_cache_init()
_close()
_reset_select()
_execute()
_prep_query()
_trans_begin()
_trans_commit()
_trans_rollback()
_list_tables()
_list_columns()
_from_tables()
$_trans_depth
$_trans_status
$_trans_failure
$_protect_identifiers
$_reserved_identifiers
$_escape_char
$_like_escape_str
$_like_escape_chr
$_random_keyword
$_count_string
$_mysqli
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

$compress

$compress : boolean

Compression flag

Type

boolean

$delete_hack

$delete_hack : boolean

DELETE hack flag

Whether to use the MySQL "delete hack" which allows the number of affected rows to be shown. Uses a preg_replace when enabled, adding a bit more processing to all queries.

Type

boolean

$stricton

$stricton : boolean

Strict ON flag

Whether we're running in strict SQL mode.

Type

boolean

$_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

$_mysqli

$_mysqli : \MySQLi

MySQLi object

Has to be preserved without being assigned to $conn_id.

Type

\MySQLi

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(boolean  $persistent = FALSE) : object

Database connection

Parameters

boolean $persistent

Returns

object

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

db_select()

db_select(string  $database = '') : boolean

Select the database

Parameters

string $database

Returns

boolean

error()

error() : array

Error

Returns an array containing code and message of the last database error that has occurred.

Returns

array

platform()

platform() : string

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

..)

Returns

string

version()

version() : string

Database version number

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

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

affected_rows()

affected_rows() : integer

Affected Rows

Returns

integer

insert_id()

insert_id() : integer

Insert ID

Returns

integer

_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

_reset_select()

_reset_select() : void

Dummy method that allows Query Builder class to be disabled and keep count_all() working.

_execute()

_execute(string  $sql) : mixed

Execute the query

Parameters

string $sql

an SQL query

Returns

mixed

_prep_query()

_prep_query(string  $sql) : string

Prep the query

If needed, each database adapter can prep the query string

Parameters

string $sql

an SQL query

Returns

string

_trans_begin()

_trans_begin() : boolean

Begin Transaction

Returns

boolean

_trans_commit()

_trans_commit() : boolean

Commit Transaction

Returns

boolean

_trans_rollback()

_trans_rollback() : boolean

Rollback Transaction

Returns

boolean

_list_tables()

_list_tables(boolean  $prefix_limit = FALSE) : string

List table query

Generates a platform-specific query string so that the table names can be fetched

Parameters

boolean $prefix_limit

Returns

string

_list_columns()

_list_columns(string  $table = '') : string

Show column query

Generates a platform-specific query string so that the column names can be fetched

Parameters

string $table

Returns

string

_from_tables()

_from_tables() : string

FROM tables

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

Returns

string