Свойство | Тип | Описание | |
---|---|---|---|
$_config | Map of configuration settings | ||
$_connection_name | Key name of the connections in self::$_db used by this instance | ||
$_data | The data for a hydrated instance of the class | ||
$_db | Map of database connections, instances of the PDO class | ||
$_default_config | Class configuration | ||
$_dirty_fields | lifetime of the object | ||
$_distinct | Should the query include a DISTINCT keyword? | ||
$_expr_fields | Fields that are to be inserted in the DB raw | ||
$_group_by | GROUP BY | ||
$_having_conditions | HAVING | ||
$_instance_id_column | this instance only. Overrides the config settings. | ||
$_is_new | Is this a new object (has create() been called)? | ||
$_is_raw_query | Is this a raw query? | ||
$_join_sources | Join sources | ||
$_last_query | Last query run, only populated if logging is enabled | ||
$_last_statement | Reference to previously used PDOStatement object to enable low-level access, if needed | ||
$_limit | LIMIT | ||
$_offset | OFFSET | ||
$_order_by | ORDER BY | ||
$_query_cache | Query cache, only used if query caching is enabled | ||
$_query_log | Log of all queries run, mapped by connection key, only populated if logging is enabled | ||
$_raw_parameters | The raw query parameters | ||
$_raw_query | The raw query | ||
$_result_columns | Columns to select in the result | ||
$_table_alias | Alias for the table to be used in SELECT queries | ||
$_table_name | The name of the table the current ORM instance is associated with | ||
$_using_default_result_columns | Are we using the default result column or have these been manually changed? | ||
$_values | Values to be bound to the query | ||
$_where_conditions | Array of WHERE clauses |
Метод | Описание | |
---|---|---|
__call ( string $name, array $arguments ) : ORM | Magic method to capture calls to undefined class methods. | |
__callStatic ( string $name, array $arguments ) : ORM | Magic method to capture calls to undefined static class methods. | |
__get ( $key ) | --------------------- // | |
__isset ( $key ) | ||
__set ( $key, $value ) | ||
__unset ( $key ) | ||
_add_having_no_value ( $column_name, $operator ) | Internal method to add a HAVING clause with no parameters(like IS NULL and IS NOT NULL) | |
_add_having_placeholder ( $column_name, $separator, $values ) | Internal method to add a HAVING clause with multiple values (like IN and NOT IN) | |
_add_id_column_conditions ( &$query ) | Add a WHERE clause for every column that belongs to the primary key | |
_add_where_no_value ( $column_name, $operator ) | Add a WHERE clause with no parameters(like IS NULL and IS NOT NULL) | |
_add_where_placeholder ( $column_name, $separator, $values ) | Add a WHERE clause with multiple values (like IN and NOT IN) | |
_setup_limit_clause_style ( string $connection_name ) | Detect and initialise the limit clause style ("SELECT TOP 5" / ". | |
as_array ( ) | Return the raw data wrapped by this ORM instance as an associative array. Column names may optionally be supplied as arguments, if so, only those keys will be returned. | |
avg ( $column ) | Tell the ORM that you wish to execute a AVG query. | |
clear_cache ( $table_name = null, $connection_name = self::DEFAULT_CONNECTION ) | Clear the query cache | |
configure ( string $key, mixed $value = null, string $connection_name = self::DEFAULT_CONNECTION ) | Pass configuration settings to the class in the form of key/value pairs. As a shortcut, if the second argument is omitted and the key is a string, the setting is assumed to be the DSN string used by PDO to connect to the database (often, this will be the only configuration required to use Idiorm). If you have more than one setting you wish to configure, another shortcut is to pass an array of settings (and omit the second argument). | |
count ( $column = '*' ) | Tell the ORM that you wish to execute a COUNT query. | |
count_null_id_columns ( ) | Counts the number of columns that belong to the primary key and their value is null. | |
create ( $data = null ) | Create a new, empty instance of the class. Used to add a new row to your database. May optionally be passed an associative array of data to populate the instance. If so, all fields will be flagged as dirty so all will be saved to the database when save() is called. | |
delete ( ) | Delete this record from the database | |
delete_many ( ) | Delete many records from the database | |
distinct ( ) | Add a DISTINCT keyword before the list of columns in the SELECT query | |
find_array ( ) : array | Tell the ORM that you are expecting multiple results from your query, and execute it. Will return an array, or an empty array if no rows were returned. | |
find_many ( ) : array | IdiormResultSet | Tell the ORM that you are expecting multiple results from your query, and execute it. Will return an array of instances of the ORM class, or an empty array if no rows were returned. | |
find_one ( $id = null ) | Tell the ORM that you are expecting a single result back from your query, and execute it. Will return a single instance of the ORM class, or false if no rows were returned. | |
find_result_set ( ) : IdiormResultSet | Tell the ORM that you are expecting multiple results from your query, and execute it. Will return a result set object containing instances of the ORM class. | |
for_table ( string $table_name, string $connection_name = self::DEFAULT_CONNECTION ) : ORM | Despite its slightly odd name, this is actually the factory method used to acquire instances of the class. It is named this way for the sake of a readable interface, ie ORM::for_table('table_name')->find_one()-> etc. As such, this will normally be the first method called in a chain. | |
force_all_dirty ( ) | Force the ORM to flag all the fields in the $data array as "dirty" and therefore update them when save() is called. | |
full_outer_join ( $table, $constraint, $table_alias = null ) | Add an FULL OUTER JOIN souce to the query | |
get ( $key ) | Return the value of a property of this object (database row) or null if not present. | |
get_config ( string $key = null, string $connection_name = self::DEFAULT_CONNECTION ) | Retrieve configuration options by key, or as whole array. | |
get_connection_names ( ) : array | Get a list of the available connection names | |
get_db ( string $connection_name = self::DEFAULT_CONNECTION ) : PDO | Returns the PDO instance used by the the ORM to communicate with the database. This can be called if any low-level DB access is required outside the class. If multiple connections are used, accepts an optional key name for the connection. | |
get_last_query ( null | string $connection_name = null ) : string | Get the last query executed. Only works if the 'logging' config option is set to true. Otherwise this will return null. Returns last query from all connections if no connection_name is specified | |
get_last_statement ( ) : PDOStatement | Returns the PDOStatement instance last used by any connection wrapped by the ORM. | |
get_query_log ( string $connection_name = self::DEFAULT_CONNECTION ) | Get an array containing all the queries run on a specified connection up to now. | |
group_by ( $column_name ) | Add a column to the list of columns to GROUP BY | |
group_by_expr ( $expr ) | Add an unquoted expression to the list of columns to GROUP BY | |
having ( $column_name, $value = null ) | Add a HAVING column = value clause to your query. Each time this is called in the chain, an additional HAVING will be added, and these will be ANDed together when the final query is built. | |
having_equal ( $column_name, $value = null ) | More explicitly named version of for the having() method. | |
having_gt ( $column_name, $value = null ) | Add a HAVING . | |
having_gte ( $column_name, $value = null ) | Add a HAVING . | |
having_id_is ( $id ) | Special method to query the table by its primary key. | |
having_in ( $column_name, $values = null ) | Add a HAVING . | |
having_like ( $column_name, $value = null ) | Add a HAVING . | |
having_lt ( $column_name, $value = null ) | Add a HAVING . | |
having_lte ( $column_name, $value = null ) | Add a HAVING . | |
having_not_equal ( $column_name, $value = null ) | Add a HAVING column != value clause to your query. | |
having_not_in ( $column_name, $values = null ) | Add a HAVING . | |
having_not_like ( $column_name, $value = null ) | Add where HAVING . | |
having_not_null ( $column_name ) | Add a HAVING column IS NOT NULL clause to your query | |
having_null ( $column_name ) | Add a HAVING column IS NULL clause to your query | |
having_raw ( $clause, $parameters = [] ) | Add a raw HAVING clause to the query. The clause should contain question mark placeholders, which will be bound to the parameters supplied in the second argument. | |
hydrate ( $data = [] ) | This method can be called to hydrate (populate) this instance of the class from an associative array of data. | |
id ( $disallow_null = false ) | Get the primary key ID of this object. | |
inner_join ( $table, $constraint, $table_alias = null ) | Add an INNER JOIN souce to the query | |
is_dirty ( $key ) | Check whether the given field has been changed since this object was saved. | |
is_new ( ) : boolean | Check whether the model was the result of a call to create() or not | |
join ( $table, $constraint, $table_alias = null ) | Add a simple JOIN source to the query | |
left_outer_join ( $table, $constraint, $table_alias = null ) | Add a LEFT OUTER JOIN souce to the query | |
limit ( $limit ) | Add a LIMIT to the query | |
max ( $column ) | Tell the ORM that you wish to execute a MAX query. | |
min ( $column ) | Tell the ORM that you wish to execute a MIN query. | |
offset ( $offset ) | Add an OFFSET to the query | |
offsetExists ( $key ) | --------------------- // | |
offsetGet ( $key ) | ||
offsetSet ( $key, $value ) | ||
offsetUnset ( $key ) | ||
order_by_asc ( $column_name ) | Add an ORDER BY column ASC clause | |
order_by_desc ( $column_name ) | Add an ORDER BY column DESC clause | |
order_by_expr ( $clause ) | Add an unquoted expression as an ORDER BY clause | |
raw_execute ( string $query, array $parameters = [], string $connection_name = self::DEFAULT_CONNECTION ) : boolean | Executes a raw query as a wrapper for PDOStatement::execute. | |
raw_join ( $table, $constraint, $table_alias, $parameters = [] ) | Add a RAW JOIN source to the query | |
raw_query ( $query, $parameters = [] ) | Perform a raw query. The query can contain placeholders in either named or question mark style. If placeholders are used, the parameters should be an array of values which will be bound to the placeholders in the query. If this method is called, all other query building methods will be ignored. | |
reset_config ( ) | Delete all configs in _config array. | |
reset_db ( ) | Delete all registered PDO objects in _db array. | |
right_outer_join ( $table, $constraint, $table_alias = null ) | Add an RIGHT OUTER JOIN souce to the query | |
save ( ) | Save any fields which have been modified on this object to the database. | |
select ( $column, $alias = null ) | Add a column to the list of columns returned by the SELECT query. This defaults to '*'. The second optional argument is the alias to return the column as. | |
select_expr ( $expr, $alias = null ) | Add an unquoted expression to the list of columns returned by the SELECT query. The second optional argument is the alias to return the column as. | |
select_many ( ) : ORM | Add columns to the list of columns returned by the SELECT query. This defaults to '*'. Many columns can be supplied as either an array or as a list of parameters to the method. | |
select_many_expr ( ) : ORM | Add an unquoted expression to the list of columns returned by the SELECT query. Many columns can be supplied as either an array or as a list of parameters to the method. | |
set ( $key, $value = null ) | Set a property to a particular value on this object. | |
set_db ( PDO $db, string $connection_name = self::DEFAULT_CONNECTION ) | Set the PDO object used by Idiorm to communicate with the database. | |
set_expr ( string | array $key, string | null $value = null ) | Set a property to a particular value on this object. | |
sum ( $column ) | Tell the ORM that you wish to execute a SUM query. | |
table_alias ( $alias ) | Add an alias for the main table to be used in SELECT queries | |
use_id_column ( $id_column ) | Specify the ID column to use for this instance or array of instances only. | |
where ( $column_name, $value = null ) | Add a WHERE column = value clause to your query. Each time this is called in the chain, an additional WHERE will be added, and these will be ANDed together when the final query is built. | |
where_any_is ( $values, $operator = '=' ) | Allows adding a WHERE clause that matches any of the conditions specified in the array. Each element in the associative array will be a different condition, where the key will be the column name. | |
where_equal ( $column_name, $value = null ) | More explicitly named version of for the where() method. | |
where_gt ( $column_name, $value = null ) | Add a WHERE . | |
where_gte ( $column_name, $value = null ) | Add a WHERE . | |
where_id_in ( $ids ) | Similar to where_id_is() but allowing multiple primary keys. | |
where_id_is ( $id ) | Special method to query the table by its primary key | |
where_in ( $column_name, $values ) | Add a WHERE . | |
where_like ( $column_name, $value = null ) | Add a WHERE . | |
where_lt ( $column_name, $value = null ) | Add a WHERE . | |
where_lte ( $column_name, $value = null ) | Add a WHERE . | |
where_not_equal ( $column_name, $value = null ) | Add a WHERE column != value clause to your query. | |
where_not_in ( $column_name, $values ) | Add a WHERE . | |
where_not_like ( $column_name, $value = null ) | Add where WHERE . | |
where_not_null ( $column_name ) | Add a WHERE column IS NOT NULL clause to your query | |
where_null ( $column_name ) | Add a WHERE column IS NULL clause to your query | |
where_raw ( $clause, $parameters = [] ) | Add a raw WHERE clause to the query. The clause should contain question mark placeholders, which will be bound to the parameters supplied in the second argument. |
Метод | Описание | |
---|---|---|
__construct ( $table_name, $data = [], $connection_name = self::DEFAULT_CONNECTION ) | "Private" constructor; shouldn't be called directly. | |
_add_condition ( $type, $fragment, $values = [] ) | Internal method to add a HAVING or WHERE condition to the query | |
_add_having ( $fragment, $values = [] ) | Internal method to add a HAVING condition to the query | |
_add_join_source ( $join_operator, $table, $constraint, $table_alias = null ) | Internal method to add a JOIN source to the query. | |
_add_order_by ( $column_name, $ordering ) | Add an ORDER BY clause to the query | |
_add_result_column ( $expr, $alias = null ) | Internal method to add an unquoted expression to the set of columns returned by the SELECT query. The second optional argument is the alias to return the expression as. | |
_add_simple_condition ( $type, $column_name, $separator, $value ) | Helper method to compile a simple COLUMN SEPARATOR VALUE style HAVING or WHERE condition into a string and value ready to be passed to the _add_condition method. Avoids duplication of the call to _quote_identifier | |
_add_simple_having ( $column_name, $separator, $value ) | Internal method to add a HAVING condition to the query | |
_add_simple_where ( $column_name, $separator, $value ) | Internal method to add a WHERE condition to the query | |
_add_where ( $fragment, $values = [] ) | Internal method to add a WHERE condition to the query | |
_build_conditions ( string $type ) : string | Build a WHERE or HAVING clause | |
_build_group_by ( ) | Build GROUP BY | |
_build_having ( ) | Build the HAVING clause(s) | |
_build_insert ( ) | Build an INSERT query | |
_build_join ( ) | Build the JOIN sources | |
_build_limit ( ) | Build LIMIT | |
_build_offset ( ) | Build OFFSET | |
_build_order_by ( ) | Build ORDER BY | |
_build_select ( ) | Build a SELECT statement based on the clauses that have been passed to this instance by chaining method calls. | |
_build_select_start ( ) | Build the start of the SELECT statement | |
_build_update ( ) | Build an UPDATE query | |
_build_where ( ) | Build the WHERE clause(s) | |
_cache_query_result ( $cache_key, $value, $table_name = null, $connection_name = self::DEFAULT_CONNECTION ) | Add the given value to the query cache. | |
_call_aggregate_db_function ( string $sql_function, string $column ) : integer | Execute an aggregate query on the current connection. | |
_check_query_cache ( $cache_key, $table_name = null, $connection_name = self::DEFAULT_CONNECTION ) | Check the query cache for the given cache key. If a value is cached for the key, return the value. Otherwise, return false. | |
_create_cache_key ( $query, $parameters, $table_name = null, $connection_name = self::DEFAULT_CONNECTION ) | Create a cache key for the given query and parameters. | |
_create_instance_from_row ( $row ) | Create an ORM instance from the given row (an associative array of data fetched from the database) | |
_create_placeholders ( $fields ) | Return a string containing the given number of question marks, separated by commas. Eg "?, ?, ?" | |
_detect_identifier_quote_character ( string $connection_name ) : string | Return the correct character used to quote identifiers (table names, column names etc) by looking at the driver being used by PDO. | |
_detect_limit_clause_style ( string $connection_name ) : string | Returns a constant after determining the appropriate limit clause style | |
_execute ( string $query, array $parameters = [], string $connection_name = self::DEFAULT_CONNECTION ) : boolean | Internal helper method for executing statments. Logs queries, and stores statement object in ::_last_statment, accessible publicly through ::get_last_statement() | |
_find_many ( ) : array | Tell the ORM that you are expecting multiple results from your query, and execute it. Will return an array of instances of the ORM class, or an empty array if no rows were returned. | |
_get_compound_id_column_values ( $value ) | Helper method that filters a column/value array returning only those columns that belong to a compound primary key. | |
_get_compound_id_column_values_array ( $values ) | Helper method that filters an array containing compound column/value arrays. | |
_get_id_column_name ( ) | Return the name of the column in the database table which contains the primary key ID of the row. | |
_join_if_not_empty ( $glue, $pieces ) | Wrapper around PHP's join function which only adds the pieces if they are not empty. | |
_log_query ( string $query, array $parameters, string $connection_name, float $query_time ) : boolean | Add a query to the internal query log. Only works if the 'logging' config option is set to true. | |
_normalise_select_many_columns ( array $columns ) : array | Take a column specification for the select many methods and convert it into a normalised array of columns and aliases. | |
_quote_identifier ( $identifier ) | Quote a string that is used as an identifier (table names, column names etc) or an array containing multiple identifiers. This method can also deal with dot-separated identifiers eg table.column | |
_quote_identifier_part ( $part ) | This method performs the actual quoting of a single part of an identifier, using the identifier quote character specified in the config (or autodetected). | |
_quote_one_identifier ( $identifier ) | Quote a string that is used as an identifier (table names, column names etc). This method can also deal with dot-separated identifiers eg table.column | |
_run ( ) | Execute the SELECT query that has been built up by chaining methods on this class. Return an array of rows as associative arrays. | |
_set_orm_property ( string | array $key, string | null $value = null, $expr = false ) | Set a property on the ORM object. | |
_setup_db ( string $connection_name = self::DEFAULT_CONNECTION ) | Set up the database connection used by the class | |
_setup_db_config ( string $connection_name ) | Ensures configuration (multiple connections) is at least set to default. | |
_setup_identifier_quote_character ( string $connection_name ) | Detect and initialise the character used to quote identifiers (table names, column names etc). If this has been specified manually using ORM::configure('identifier_quote_character', 'some-char'), this will do nothing. |
public static __callStatic ( string $name, array $arguments ) : ORM | ||
$name | string | |
$arguments | array | |
Результат | ORM |
protected __construct ( $table_name, $data = [], $connection_name = self::DEFAULT_CONNECTION ) |
protected _add_condition ( $type, $fragment, $values = [] ) |
protected _add_having ( $fragment, $values = [] ) |
public _add_having_no_value ( $column_name, $operator ) |
public _add_having_placeholder ( $column_name, $separator, $values ) |
public _add_id_column_conditions ( &$query ) |
protected _add_join_source ( $join_operator, $table, $constraint, $table_alias = null ) |
protected _add_order_by ( $column_name, $ordering ) |
protected _add_result_column ( $expr, $alias = null ) |
protected _add_simple_condition ( $type, $column_name, $separator, $value ) |
protected _add_simple_having ( $column_name, $separator, $value ) |
protected _add_simple_where ( $column_name, $separator, $value ) |
protected _add_where ( $fragment, $values = [] ) |
public _add_where_no_value ( $column_name, $operator ) |
public _add_where_placeholder ( $column_name, $separator, $values ) |
protected _build_conditions ( string $type ) : string | ||
$type | string | |
Результат | string |
protected _build_select ( ) |
protected _build_select_start ( ) |
protected static _cache_query_result ( $cache_key, $value, $table_name = null, $connection_name = self::DEFAULT_CONNECTION ) |
protected static _check_query_cache ( $cache_key, $table_name = null, $connection_name = self::DEFAULT_CONNECTION ) |
protected static _create_cache_key ( $query, $parameters, $table_name = null, $connection_name = self::DEFAULT_CONNECTION ) |
protected _create_instance_from_row ( $row ) |
protected _create_placeholders ( $fields ) |
protected static _detect_identifier_quote_character ( string $connection_name ) : string | ||
$connection_name | string | Which connection to use |
Результат | string |
protected static _detect_limit_clause_style ( string $connection_name ) : string | ||
$connection_name | string | Which connection to use |
Результат | string | Limit clause style keyword/constant |
protected static _execute ( string $query, array $parameters = [], string $connection_name = self::DEFAULT_CONNECTION ) : boolean | ||
$query | string | |
$parameters | array | An array of parameters to be bound in to the query |
$connection_name | string | Which connection to use |
Результат | boolean | Response of PDOStatement::execute() |
protected _find_many ( ) : array | ||
Результат | array |
protected _get_compound_id_column_values ( $value ) |
protected _get_compound_id_column_values_array ( $values ) |
protected _get_id_column_name ( ) |
protected _join_if_not_empty ( $glue, $pieces ) |
protected _normalise_select_many_columns ( array $columns ) : array | ||
$columns | array | |
Результат | array |
protected _quote_identifier ( $identifier ) |
protected _quote_identifier_part ( $part ) |
protected _quote_one_identifier ( $identifier ) |
protected _run ( ) |
protected static _setup_db_config ( string $connection_name ) | ||
$connection_name | string | Which connection to use |
protected static _setup_identifier_quote_character ( string $connection_name ) | ||
$connection_name | string | Which connection to use |
public static _setup_limit_clause_style ( string $connection_name ) | ||
$connection_name | string | Which connection to use |
public as_array ( ) |
public static clear_cache ( $table_name = null, $connection_name = self::DEFAULT_CONNECTION ) |
public count ( $column = '*' ) |
public count_null_id_columns ( ) |
public create ( $data = null ) |
public distinct ( ) |
public find_array ( ) : array | ||
Результат | array |
public find_one ( $id = null ) |
public find_result_set ( ) : IdiormResultSet | ||
Результат | IdiormResultSet |
public force_all_dirty ( ) |
public full_outer_join ( $table, $constraint, $table_alias = null ) |
public get ( $key ) |
public static get_config ( string $key = null, string $connection_name = self::DEFAULT_CONNECTION ) | ||
$key | string | |
$connection_name | string | Which connection to use |
public static get_connection_names ( ) : array | ||
Результат | array |
public static get_last_statement ( ) : PDOStatement | ||
Результат | PDOStatement |
public static get_query_log ( string $connection_name = self::DEFAULT_CONNECTION ) | ||
$connection_name | string | Which connection to use |
public group_by ( $column_name ) |
public group_by_expr ( $expr ) |
public having ( $column_name, $value = null ) |
public having_equal ( $column_name, $value = null ) |
public having_gt ( $column_name, $value = null ) |
public having_gte ( $column_name, $value = null ) |
public having_id_is ( $id ) |
public having_in ( $column_name, $values = null ) |
public having_like ( $column_name, $value = null ) |
public having_lt ( $column_name, $value = null ) |
public having_lte ( $column_name, $value = null ) |
public having_not_equal ( $column_name, $value = null ) |
public having_not_in ( $column_name, $values = null ) |
public having_not_like ( $column_name, $value = null ) |
public having_not_null ( $column_name ) |
public having_null ( $column_name ) |
public having_raw ( $clause, $parameters = [] ) |
public hydrate ( $data = [] ) |
public inner_join ( $table, $constraint, $table_alias = null ) |
public is_dirty ( $key ) |
public join ( $table, $constraint, $table_alias = null ) |
public left_outer_join ( $table, $constraint, $table_alias = null ) |
public order_by_asc ( $column_name ) |
public order_by_desc ( $column_name ) |
public order_by_expr ( $clause ) |
public raw_join ( $table, $constraint, $table_alias, $parameters = [] ) |
public raw_query ( $query, $parameters = [] ) |
public static reset_config ( ) |
public static reset_db ( ) |
public right_outer_join ( $table, $constraint, $table_alias = null ) |
public save ( ) |
public select ( $column, $alias = null ) |
public select_expr ( $expr, $alias = null ) |
public select_many ( ) : ORM | ||
Результат | ORM |
public select_many_expr ( ) : ORM | ||
Результат | ORM |
public set ( $key, $value = null ) |
public table_alias ( $alias ) |
public use_id_column ( $id_column ) |
public where ( $column_name, $value = null ) |
public where_any_is ( $values, $operator = '=' ) |
public where_equal ( $column_name, $value = null ) |
public where_gt ( $column_name, $value = null ) |
public where_gte ( $column_name, $value = null ) |
public where_id_in ( $ids ) |
public where_id_is ( $id ) |
public where_like ( $column_name, $value = null ) |
public where_lt ( $column_name, $value = null ) |
public where_lte ( $column_name, $value = null ) |
public where_not_equal ( $column_name, $value = null ) |
public where_not_in ( $column_name, $values ) |
public where_not_like ( $column_name, $value = null ) |
public where_not_null ( $column_name ) |
public where_null ( $column_name ) |
public where_raw ( $clause, $parameters = [] ) |
protected $_connection_name |
protected static $_db |
protected static $_default_config |
protected $_expr_fields |
protected $_instance_id_column |
protected static $_last_query |
protected static $_last_statement |
protected static $_query_cache |
protected static $_query_log |
protected $_table_alias |
protected $_table_name |
protected $_using_default_result_columns |