PHP 클래스 CI_DB_pdo_driver, TastyIgniter

Note: _DB is an extender class that the app controller creates dynamically based on whether the active record class is being used or not.
저자: EllisLab Dev Team
상속: extends CI_DB
파일 보기 프로젝트 열기: tastyigniter/tastyigniter 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
$dbdriver string Database driver
$options array PDO Options

공개 메소드들

메소드 설명
__construct ( array $params ) : void Class constructor
affected_rows ( ) : integer Affected Rows
db_connect ( boolean $persistent = FALSE ) : object Database connection
error ( ) : array Error
insert_id ( string $name = NULL ) : integer Insert ID
version ( ) : string Database version number

보호된 메소드들

메소드 설명
_escape_str ( $str ) : string Platform-dependant string escape
_execute ( string $sql ) : mixed Execute the query
_field_data ( string $table ) : string Field data query
_trans_begin ( ) : boolean Begin Transaction
_trans_commit ( ) : boolean Commit Transaction
_trans_rollback ( ) : boolean Rollback Transaction
_truncate ( string $table ) : string Truncate statement
_update_batch ( string $table, array $values, string $index ) : string Update_Batch statement

메소드 상세

__construct() 공개 메소드

Validates the DSN string and/or detects the subdriver.
public __construct ( array $params ) : void
$params array
리턴 void

_escape_str() 보호된 메소드

Platform-dependant string escape
protected _escape_str ( $str ) : string
리턴 string

_execute() 보호된 메소드

Execute the query
protected _execute ( string $sql ) : mixed
$sql string SQL query
리턴 mixed

_field_data() 보호된 메소드

Generates a platform-specific query so that the column data can be retrieved
protected _field_data ( string $table ) : string
$table string
리턴 string

_trans_begin() 보호된 메소드

Begin Transaction
protected _trans_begin ( ) : boolean
리턴 boolean

_trans_commit() 보호된 메소드

Commit Transaction
protected _trans_commit ( ) : boolean
리턴 boolean

_trans_rollback() 보호된 메소드

Rollback Transaction
protected _trans_rollback ( ) : boolean
리턴 boolean

_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

_update_batch() 보호된 메소드

Generates a platform-specific batch update string from the supplied data
protected _update_batch ( string $table, array $values, string $index ) : string
$table string Table name
$values array Update data
$index string WHERE key
리턴 string

affected_rows() 공개 메소드

Affected Rows
public affected_rows ( ) : integer
리턴 integer

db_connect() 공개 메소드

Database connection
public db_connect ( boolean $persistent = FALSE ) : object
$persistent boolean
리턴 object

error() 공개 메소드

Returns an array containing code and message of the last database error that has occured.
public error ( ) : array
리턴 array

insert_id() 공개 메소드

Insert ID
public insert_id ( string $name = NULL ) : integer
$name string
리턴 integer

version() 공개 메소드

Database version number
public version ( ) : string
리턴 string

프로퍼티 상세

$dbdriver 공개적으로 프로퍼티

Database driver
public string $dbdriver
리턴 string

$options 공개적으로 프로퍼티

PDO Options
public array $options
리턴 array