PHP Класс CI_DB_pdo_mysql_driver, TastyIgniter

Note: _DB is an extender class that the app controller creates dynamically based on whether the query builder class is being used or not.
Автор: EllisLab Dev Team
Наследование: extends CI_DB_pdo_driver
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
$compress boolean Compression flag
$stricton boolean Whether we're running in strict SQL mode.
$subdriver string Sub-driver

Защищенные свойства (Protected)

Свойство Тип Описание
$_escape_char string Identifier escape character

Открытые методы

Метод Описание
__construct ( array $params ) : void Class constructor
db_connect ( boolean $persistent = FALSE ) : object Database connection
db_select ( string $database = '' ) : boolean Select the database
field_data ( string $table ) : array Returns an object with field data

Защищенные методы

Метод Описание
_from_tables ( ) : string FROM tables
_list_columns ( string $table = '' ) : string Show column query
_list_tables ( boolean $prefix_limit = FALSE ) : string Show table query
_truncate ( string $table ) : string Truncate statement

Описание методов

__construct() публичный Метод

Builds the DSN if not already set.
public __construct ( array $params ) : void
$params array
Результат void

_from_tables() защищенный Метод

Groups tables in FROM clauses if needed, so there is no confusion about operator precedence.
protected _from_tables ( ) : string
Результат string

_list_columns() защищенный Метод

Generates a platform-specific query string so that the column names can be fetched
protected _list_columns ( string $table = '' ) : string
$table string
Результат string

_list_tables() защищенный Метод

Generates a platform-specific query string so that the table names can be fetched
protected _list_tables ( boolean $prefix_limit = FALSE ) : string
$prefix_limit boolean
Результат string

_truncate() защищенный Метод

Generates a platform-specific truncate string from the supplied data If the database does not support the TRUNCATE statement, then this method maps to 'DELETE FROM table'
protected _truncate ( string $table ) : string
$table string
Результат string

db_connect() публичный Метод

Database connection
public db_connect ( boolean $persistent = FALSE ) : object
$persistent boolean
Результат object

db_select() публичный Метод

Select the database
public db_select ( string $database = '' ) : boolean
$database string
Результат boolean

field_data() публичный Метод

Returns an object with field data
public field_data ( string $table ) : array
$table string
Результат array

Описание свойств

$_escape_char защищенное свойство

Identifier escape character
protected string $_escape_char
Результат string

$compress публичное свойство

Compression flag
public bool $compress
Результат boolean

$stricton публичное свойство

Whether we're running in strict SQL mode.
public bool $stricton
Результат boolean

$subdriver публичное свойство

Sub-driver
public string $subdriver
Результат string