| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267 |
- <?php
- /**
- * PHP Version 5.4
- *
- * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @since CakePHP(tm) v 3.0.0
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- namespace Cake\Database\Statement;
- use Cake\Database\StatementInterface;
- use Cake\Database\TypeConverterTrait;
- /**
- * Represents a database statement. Statements contains queries that can be
- * executed multiple times by binding different values on each call. This class
- * also helps convert values to their valid representation for the corresponding
- * types.
- *
- * This class is but a decorator of an actual statement implementation, such as
- * PDOStatement.
- */
- class StatementDecorator implements StatementInterface, \Countable, \IteratorAggregate {
- use TypeConverterTrait;
- /**
- * Statement instance implementation, such as PDOStatement
- * or any other custom implementation
- *
- * @var mixed
- */
- protected $_statement;
- /**
- * Reference to the driver object associated to this statement
- *
- * @var Cake\Database\Driver
- */
- protected $_driver;
- /**
- * Constructor
- *
- * @param Statement implementation such as PDOStatement
- * @return void
- */
- public function __construct($statement = null, $driver = null) {
- $this->_statement = $statement;
- $this->_driver = $driver;
- }
- /**
- * Magic getter to return $queryString as read-only
- *
- * @param string $property internal property to get
- * @return mixed
- */
- public function __get($property) {
- if ($property === 'queryString') {
- return $this->_statement->queryString;
- }
- }
- /**
- * Assign a value to an positional or named variable in prepared query. If using
- * positional variables you need to start with index one, if using named params then
- * just use the name in any order.
- *
- * It is not allowed to combine positional and named variables in the same statement
- *
- * ## Examples:
- *
- * `$statement->bindValue(1, 'a title');`
- * `$statement->bindValue('active', true, 'boolean');`
- * `$statement->bindValue(5, new \DateTime(), 'date');`
- *
- * @param string|integer $column name or param position to be bound
- * @param mixed $value the value to bind to variable in query
- * @param string $type name of configured Type class
- * @return void
- */
- public function bindValue($column, $value, $type = 'string') {
- $this->_statement->bindValue($column, $value, $type);
- }
- /**
- * Closes a cursor in the database, freeing up any resources and memory
- * allocated to it. In most cases you don't need to call this method, as it is
- * automatically called after fetching all results from the result set.
- *
- * @return void
- */
- public function closeCursor() {
- $this->_statement->closeCursor();
- }
- /**
- * Returns the number of columns this statement's results will contain
- *
- * ## Example:
- *
- * {{{
- * $statement = $connection->prepare('SELECT id, title from articles');
- * $statement->execute();
- * echo $statement->columnCount(); // outputs 2
- * }}}
- *
- * @return integer
- */
- public function columnCount() {
- return $this->_statement->columnCount();
- }
- /**
- * Returns the error code for the last error that occurred when executing this statement
- *
- * @return integer|string
- */
- public function errorCode() {
- return $this->_statement->errorCode();
- }
- /**
- * Returns the error information for the last error that occurred when executing
- * this statement
- *
- * @return array
- */
- public function errorInfo() {
- return $this->_statement->errorInfo();
- }
- /**
- * Executes the statement by sending the SQL query to the database. It can optionally
- * take an array or arguments to be bound to the query variables. Please note
- * that binding parameters from this method will not perform any custom type conversion
- * as it would normally happen when calling `bindValue`
- *
- * $param array $params list of values to be bound to query
- * @return boolean true on success, false otherwise
- */
- public function execute($params = null) {
- return $this->_statement->execute($params);
- }
- /**
- * Returns the next row for the result set after executing this statement.
- * Rows can be fetched to contain columns as names or positions. If no
- * rows are left in result set, this method will return false
- *
- * ## Example:
- *
- * {{{
- * $statement = $connection->prepare('SELECT id, title from articles');
- * $statement->execute();
- * print_r($statement->fetch('assoc')); // will show array('id' => 1, 'title' => 'a title')
- * }}}
- *
- * @param string $type 'num' for positional columns, assoc for named columns
- * @return mixed|boolean result array containing columns and values or false if no results
- * are left
- */
- public function fetch($type = 'num') {
- return $this->_statement->fetch($type);
- }
- /**
- * Returns an array with all rows resulting from executing this statement
- *
- * ## Example:
- *
- * {{{
- * $statement = $connection->prepare('SELECT id, title from articles');
- * $statement->execute();
- * print_r($statement->fetchAll('assoc')); // will show [0 => ['id' => 1, 'title' => 'a title']]
- * }}}
- *
- * @param string $type num for fetching columns as positional keys or assoc for column names as keys
- * @return array list of all results from database for this statement
- */
- public function fetchAll($type = 'num') {
- return $this->_statement->fetchAll($type);
- }
- /**
- * Returns the number of rows affected by this SQL statement
- *
- * ## Example:
- *
- * {{{
- * $statement = $connection->prepare('SELECT id, title from articles');
- * $statement->execute();
- * print_r($statement->rowCount()); // will show 1
- * }}}
- *
- * @return integer
- */
- public function rowCount() {
- return $this->_statement->rowCount();
- }
- /**
- * Statements are iterable as arrays, this method will return
- * the iterator object for traversing all items in the result.
- *
- * ## Example:
- *
- * {{{
- * $statement = $connection->prepare('SELECT id, title from articles');
- * $statement->execute();
- * foreach ($statement as $row) {
- * //do stuff
- * }
- * }}}
- *
- * @return Iterator
- */
- public function getIterator() {
- return $this->_statement;
- }
- /**
- * Statements can be passed as argument for count()
- * to return the number for affected rows from last execution
- *
- * @return integer
- */
- public function count() {
- return $this->rowCount();
- }
- /**
- * Binds a set of values to statement object with corresponding type
- *
- * @param array $params list of values to be bound
- * @param array $types list of types to be used, keys should match those in $params
- * @return void
- */
- public function bind($params, $types) {
- if (empty($params)) {
- return;
- }
- $annonymousParams = is_int(key($params)) ? true : false;
- $offset = 1;
- foreach ($params as $index => $value) {
- $type = null;
- if (isset($types[$index])) {
- $type = $types[$index];
- }
- if ($annonymousParams) {
- $index += $offset;
- }
- $this->bindValue($index, $value, $type);
- }
- }
- }
|