Property | Type | Description | |
---|---|---|---|
$schema | string | Database schema | |
$subdriver | string | Sub-driver |
Property | Type | Description | |
---|---|---|---|
$_escape_char | string | Must be empty for ODBC. | |
$_like_escape_str | string | ESCAPE statement string | |
$_random_keyword | array | ORDER BY random keyword |
Method | Description | |
---|---|---|
__construct ( array $params ) : void | Class constructor | |
is_write_type ( $sql ) : boolean | Determines if a query is a "write" type. |
Method | Description | |
---|---|---|
_delete ( $table ) : string | Delete statement | |
_limit ( string $sql ) : string | LIMIT | |
_list_columns ( string $table = '' ) : string | Show column query | |
_list_tables ( boolean $prefix_limit = FALSE ) : string | Show table query | |
_truncate ( string $table ) : string | Truncate statement | |
_update ( string $table, array $values ) : string | Update statement |
public __construct ( array $params ) : void | ||
$params | array | |
return | void |
protected _list_columns ( string $table = '' ) : string | ||
$table | string | |
return | string |
protected _list_tables ( boolean $prefix_limit = FALSE ) : string | ||
$prefix_limit | boolean | |
return | string |
public is_write_type ( $sql ) : boolean | ||
return | boolean |
protected string $_escape_char | ||
return | string |
protected string $_like_escape_str | ||
return | string |
protected array $_random_keyword | ||
return | array |