PHP 클래스 CI_DB_postgre_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.
저자: ExpressionEngine Dev Team
상속: extends CI_DB
파일 보기 프로젝트 열기: tastyigniter/tastyigniter 1 사용 예제들

공개 프로퍼티들

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

보호된 프로퍼티들

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

공개 메소드들

메소드 설명
__construct ( array $params ) : void Class constructor
affected_rows ( ) : integer Affected Rows
db_connect ( boolean $persistent = FALSE ) : resource Database connection
error ( ) : array Error
escape ( string $str ) : mixed "Smart" Escape String
field_data ( string $table ) : array Returns an object with field data
insert_id ( ) : string Insert ID
is_write_type ( $sql ) : boolean Determines if a query is a "write" type.
order_by ( string $orderby, string $direction = '', boolean $escape = NULL ) : object ORDER BY
reconnect ( ) : void Reconnect
version ( ) : string Database version number

보호된 메소드들

메소드 설명
_close ( ) : void Close DB Connection
_db_set_charset ( string $charset ) : boolean Set client character set
_delete ( string $table ) : string Delete statement
_escape_str ( $str ) : string Platform-dependant string escape
_execute ( string $sql ) : resource Execute the query
_limit ( string $sql ) : string LIMIT
_list_columns ( string $table = '' ) : string List column query
_list_tables ( boolean $prefix_limit = FALSE ) : string Show table query
_trans_begin ( ) : boolean Begin Transaction
_trans_commit ( ) : boolean Commit Transaction
_trans_rollback ( ) : boolean Rollback Transaction
_update ( string $table, array $values ) : string Update statement
_update_batch ( string $table, array $values, string $index ) : string Update_Batch statement

메소드 상세

__construct() 공개 메소드

Creates a DSN string to be used for db_connect() and db_pconnect()
public __construct ( array $params ) : void
$params array
리턴 void

_close() 보호된 메소드

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

_db_set_charset() 보호된 메소드

Set client character set
protected _db_set_charset ( string $charset ) : boolean
$charset string
리턴 boolean

_delete() 보호된 메소드

Generates a platform-specific delete string from the supplied data
protected _delete ( string $table ) : string
$table string
리턴 string

_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

_limit() 보호된 메소드

Generates a platform-specific LIMIT clause
protected _limit ( string $sql ) : string
$sql string SQL Query
리턴 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

_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

_update() 보호된 메소드

Generates a platform-specific update string from the supplied data
protected _update ( string $table, array $values ) : string
$table string
$values array
리턴 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 ) : resource
$persistent boolean
리턴 resource

error() 공개 메소드

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

escape() 공개 메소드

Escapes data based on type
public escape ( string $str ) : mixed
$str string
리턴 mixed

field_data() 공개 메소드

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

insert_id() 공개 메소드

Insert ID
public insert_id ( ) : string
리턴 string

is_write_type() 공개 메소드

Determines if a query is a "write" type.
public is_write_type ( $sql ) : boolean
리턴 boolean

order_by() 공개 메소드

ORDER BY
public order_by ( string $orderby, string $direction = '', boolean $escape = NULL ) : object
$orderby string
$direction string ASC, DESC or RANDOM
$escape boolean
리턴 object

reconnect() 공개 메소드

Keep / reestablish the db connection if no queries have been sent for a length of time exceeding the server's idle timeout
public reconnect ( ) : void
리턴 void

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

$schema 공개적으로 프로퍼티

Database schema
public string $schema
리턴 string