PHP 클래스 CI_DB_sqlite_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
파일 보기 프로젝트 열기: tastyigniter/tastyigniter

공개 프로퍼티들

프로퍼티 타입 설명
$dbdriver string Database driver

보호된 프로퍼티들

프로퍼티 타입 설명
$_random_keyword array ORDER BY random keyword

공개 메소드들

메소드 설명
affected_rows ( ) : integer Affected Rows
db_connect ( boolean $persistent = FALSE ) : resource Non-persistent database connection
error ( ) : array Error
field_data ( string $table ) : array Returns an object with field data
insert_id ( ) : integer Insert ID
version ( ) : string Database version number

보호된 메소드들

메소드 설명
_close ( ) : void Close DB Connection
_escape_str ( $str ) : string Platform-dependant string escape
_execute ( string $sql ) : resource Execute the query
_list_columns ( string $table = '' ) : boolean Show column query
_list_tables ( boolean $prefix_limit = FALSE ) : string List table query
_replace ( string $table, array $keys, array $values ) : string Replace statement
_trans_begin ( ) : boolean Begin Transaction
_trans_commit ( ) : boolean Commit Transaction
_trans_rollback ( ) : boolean Rollback Transaction
_truncate ( string $table ) : string Truncate statement

메소드 상세

_close() 보호된 메소드

Close DB Connection
protected _close ( ) : void
리턴 void

_escape_str() 보호된 메소드

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

_execute() 보호된 메소드

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

_list_columns() 보호된 메소드

Generates a platform-specific query string so that the column names can be fetched
protected _list_columns ( string $table = '' ) : boolean
$table string
리턴 boolean

_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

_replace() 보호된 메소드

Generates a platform-specific replace string from the supplied data
protected _replace ( string $table, array $keys, array $values ) : string
$table string Table name
$keys array INSERT keys
$values array INSERT values
리턴 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 function maps to 'DELETE FROM table'
protected _truncate ( string $table ) : string
$table string
리턴 string

affected_rows() 공개 메소드

Affected Rows
public affected_rows ( ) : integer
리턴 integer

db_connect() 공개 메소드

Non-persistent database connection
public db_connect ( boolean $persistent = FALSE ) : resource
$persistent boolean
리턴 resource

error() 공개 메소드

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

field_data() 공개 메소드

Returns an object with field data
public field_data ( string $table ) : array
$table string
리턴 array

insert_id() 공개 메소드

Insert ID
public insert_id ( ) : integer
리턴 integer

version() 공개 메소드

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

프로퍼티 상세

$_random_keyword 보호되어 있는 프로퍼티

ORDER BY random keyword
protected array $_random_keyword
리턴 array

$dbdriver 공개적으로 프로퍼티

Database driver
public string $dbdriver
리턴 string