123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421 |
- <?php
- /**
- * MySQLi database connection.
- *
- * @package Kohana/Database
- * @category Drivers
- * @author Kohana Team
- * @copyright (c) Kohana Team
- * @license https://koseven.ga/LICENSE.md
- */
- class Kohana_Database_MySQLi extends Database {
- // Database in use by each connection
- protected static $_current_databases = [];
- // Use SET NAMES to set the character set
- protected static $_set_names;
- // Identifier for this connection within the PHP driver
- protected $_connection_id;
- // MySQL uses a backtick for identifiers
- protected $_identifier = '`';
- public function connect()
- {
- if ($this->_connection)
- return;
- if (Database_MySQLi::$_set_names === NULL)
- {
- // Determine if we can use mysqli_set_charset(), which is only
- // available on PHP 5.2.3+ when compiled against MySQL 5.0+
- Database_MySQLi::$_set_names = ! function_exists('mysqli_set_charset');
- }
- // Extract the connection parameters, adding required variabels
- extract($this->_config['connection'] + [
- 'database' => '',
- 'hostname' => '',
- 'username' => '',
- 'password' => '',
- 'socket' => '',
- 'port' => 3306,
- 'ssl' => NULL,
- ]);
- // Prevent this information from showing up in traces
- unset($this->_config['connection']['username'], $this->_config['connection']['password']);
- try
- {
- if(is_array($ssl))
- {
- $this->_connection = mysqli_init();
- $this->_connection->ssl_set(
- Arr::get($ssl, 'client_key_path'),
- Arr::get($ssl, 'client_cert_path'),
- Arr::get($ssl, 'ca_cert_path'),
- Arr::get($ssl, 'ca_dir_path'),
- Arr::get($ssl, 'cipher')
- );
- $this->_connection->real_connect($hostname, $username, $password, $database, $port, $socket, MYSQLI_CLIENT_SSL);
- }
- else
- {
- $this->_connection = new mysqli($hostname, $username, $password, $database, $port, $socket);
- }
- }
- catch (Exception $e)
- {
- // No connection exists
- $this->_connection = NULL;
- throw new Database_Exception(':error', [':error' => $e->getMessage()], $e->getCode());
- }
- // \xFF is a better delimiter, but the PHP driver uses underscore
- $this->_connection_id = sha1($hostname.'_'.$username.'_'.$password);
- if ( ! empty($this->_config['charset']))
- {
- // Set the character set
- $this->set_charset($this->_config['charset']);
- }
- if ( ! empty($this->_config['connection']['variables']))
- {
- // Set session variables
- $variables = [];
- foreach ($this->_config['connection']['variables'] as $var => $val)
- {
- $variables[] = 'SESSION '.$var.' = '.$this->quote($val);
- }
- $this->_connection->query('SET '.implode(', ', $variables));
- }
- }
- public function disconnect()
- {
- try
- {
- // Database is assumed disconnected
- $status = TRUE;
- if (is_resource($this->_connection))
- {
- if ($status = $this->_connection->close())
- {
- // Clear the connection
- $this->_connection = NULL;
- // Clear the instance
- parent::disconnect();
- }
- }
- }
- catch (Exception $e)
- {
- // Database is probably not disconnected
- $status = ! is_resource($this->_connection);
- }
- return $status;
- }
- public function set_charset($charset)
- {
- // Make sure the database is connected
- $this->_connection or $this->connect();
- if (Database_MySQLi::$_set_names === TRUE)
- {
- // PHP is compiled against MySQL 4.x
- $status = (bool) $this->_connection->query('SET NAMES '.$this->quote($charset));
- }
- else
- {
- // PHP is compiled against MySQL 5.x
- $status = $this->_connection->set_charset($charset);
- }
- if ($status === FALSE)
- {
- throw new Database_Exception(':error', [':error' => $this->_connection->error], $this->_connection->errno);
- }
- }
- public function query($type, $sql, $as_object = FALSE, array $params = NULL)
- {
- // Make sure the database is connected
- $this->_connection or $this->connect();
- if (Kohana::$profiling)
- {
- // Benchmark this query for the current instance
- $benchmark = Profiler::start("Database ({$this->_instance})", $sql);
- }
- // Execute the query
- if (($result = $this->_connection->query($sql)) === FALSE)
- {
- if (isset($benchmark))
- {
- // This benchmark is worthless
- Profiler::delete($benchmark);
- }
- throw new Database_Exception(':error [ :query ]', [
- ':error' => $this->_connection->error,
- ':query' => $sql
- ], $this->_connection->errno);
- }
- if (isset($benchmark))
- {
- Profiler::stop($benchmark);
- }
- // Set the last query
- $this->last_query = $sql;
- if ($type === Database::SELECT)
- {
- // Return an iterator of results
- return new Database_MySQLi_Result($result, $sql, $as_object, $params);
- }
- elseif ($type === Database::INSERT)
- {
- // Return a list of insert id and rows created
- return [
- $this->_connection->insert_id,
- $this->_connection->affected_rows,
- ];
- }
- else
- {
- // Return the number of rows affected
- return $this->_connection->affected_rows;
- }
- }
- public function datatype($type)
- {
- static $types = [
- 'blob' => ['type' => 'string', 'binary' => TRUE, 'character_maximum_length' => '65535'],
- 'bool' => ['type' => 'bool'],
- 'bigint unsigned' => ['type' => 'int', 'min' => '0', 'max' => '18446744073709551615'],
- 'datetime' => ['type' => 'string'],
- 'decimal unsigned' => ['type' => 'float', 'exact' => TRUE, 'min' => '0'],
- 'double' => ['type' => 'float'],
- 'double precision unsigned' => ['type' => 'float', 'min' => '0'],
- 'double unsigned' => ['type' => 'float', 'min' => '0'],
- 'enum' => ['type' => 'string'],
- 'fixed' => ['type' => 'float', 'exact' => TRUE],
- 'fixed unsigned' => ['type' => 'float', 'exact' => TRUE, 'min' => '0'],
- 'float unsigned' => ['type' => 'float', 'min' => '0'],
- 'geometry' => ['type' => 'string', 'binary' => TRUE],
- 'int unsigned' => ['type' => 'int', 'min' => '0', 'max' => '4294967295'],
- 'integer unsigned' => ['type' => 'int', 'min' => '0', 'max' => '4294967295'],
- 'longblob' => ['type' => 'string', 'binary' => TRUE, 'character_maximum_length' => '4294967295'],
- 'longtext' => ['type' => 'string', 'character_maximum_length' => '4294967295'],
- 'mediumblob' => ['type' => 'string', 'binary' => TRUE, 'character_maximum_length' => '16777215'],
- 'mediumint' => ['type' => 'int', 'min' => '-8388608', 'max' => '8388607'],
- 'mediumint unsigned' => ['type' => 'int', 'min' => '0', 'max' => '16777215'],
- 'mediumtext' => ['type' => 'string', 'character_maximum_length' => '16777215'],
- 'national varchar' => ['type' => 'string'],
- 'numeric unsigned' => ['type' => 'float', 'exact' => TRUE, 'min' => '0'],
- 'nvarchar' => ['type' => 'string'],
- 'point' => ['type' => 'string', 'binary' => TRUE],
- 'real unsigned' => ['type' => 'float', 'min' => '0'],
- 'set' => ['type' => 'string'],
- 'smallint unsigned' => ['type' => 'int', 'min' => '0', 'max' => '65535'],
- 'text' => ['type' => 'string', 'character_maximum_length' => '65535'],
- 'tinyblob' => ['type' => 'string', 'binary' => TRUE, 'character_maximum_length' => '255'],
- 'tinyint' => ['type' => 'int', 'min' => '-128', 'max' => '127'],
- 'tinyint unsigned' => ['type' => 'int', 'min' => '0', 'max' => '255'],
- 'tinytext' => ['type' => 'string', 'character_maximum_length' => '255'],
- 'year' => ['type' => 'string'],
- ];
- $type = str_replace(' zerofill', '', $type);
- if (isset($types[$type]))
- return $types[$type];
- return parent::datatype($type);
- }
- /**
- * Start a SQL transaction
- *
- * @link http://dev.mysql.com/doc/refman/5.0/en/set-transaction.html
- *
- * @param string $mode Isolation level
- * @return boolean
- */
- public function begin($mode = NULL)
- {
- // Make sure the database is connected
- $this->_connection or $this->connect();
- if ($mode AND ! $this->_connection->query("SET TRANSACTION ISOLATION LEVEL $mode"))
- {
- throw new Database_Exception(':error', [
- ':error' => $this->_connection->error
- ], $this->_connection->errno);
- }
- return (bool) $this->_connection->query('START TRANSACTION');
- }
- /**
- * Commit a SQL transaction
- *
- * @return boolean
- */
- public function commit()
- {
- // Make sure the database is connected
- $this->_connection or $this->connect();
- return (bool) $this->_connection->query('COMMIT');
- }
- /**
- * Rollback a SQL transaction
- *
- * @return boolean
- */
- public function rollback()
- {
- // Make sure the database is connected
- $this->_connection or $this->connect();
- return (bool) $this->_connection->query('ROLLBACK');
- }
- public function list_tables($like = NULL)
- {
- if (is_string($like))
- {
- // Search for table names
- $result = $this->query(Database::SELECT, 'SHOW TABLES LIKE '.$this->quote($like), FALSE);
- }
- else
- {
- // Find all table names
- $result = $this->query(Database::SELECT, 'SHOW TABLES', FALSE);
- }
- $tables = [];
- foreach ($result as $row)
- {
- $tables[] = reset($row);
- }
- return $tables;
- }
- public function list_columns($table, $like = NULL, $add_prefix = TRUE)
- {
- // Quote the table name
- $table = ($add_prefix === TRUE) ? $this->quote_table($table) : $table;
- if (is_string($like))
- {
- // Search for column names
- $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table.' LIKE '.$this->quote($like), FALSE);
- }
- else
- {
- // Find all column names
- $result = $this->query(Database::SELECT, 'SHOW FULL COLUMNS FROM '.$table, FALSE);
- }
- $count = 0;
- $columns = [];
- foreach ($result as $row)
- {
- list($type, $length) = $this->_parse_type($row['Type']);
- $column = $this->datatype($type);
- $column['column_name'] = $row['Field'];
- $column['column_default'] = $row['Default'];
- $column['data_type'] = $type;
- $column['is_nullable'] = ($row['Null'] == 'YES');
- $column['ordinal_position'] = ++$count;
- switch ($column['type'])
- {
- case 'float':
- if (isset($length))
- {
- list($column['numeric_precision'], $column['numeric_scale']) = explode(',', $length);
- }
- break;
- case 'int':
- if (isset($length))
- {
- // MySQL attribute
- $column['display'] = $length;
- }
- break;
- case 'string':
- switch ($column['data_type'])
- {
- case 'binary':
- case 'varbinary':
- $column['character_maximum_length'] = $length;
- break;
- case 'char':
- case 'varchar':
- $column['character_maximum_length'] = $length;
- case 'text':
- case 'tinytext':
- case 'mediumtext':
- case 'longtext':
- $column['collation_name'] = $row['Collation'];
- break;
- case 'enum':
- case 'set':
- $column['collation_name'] = $row['Collation'];
- $column['options'] = explode('\',\'', substr($length, 1, -1));
- break;
- }
- break;
- }
- // MySQL attributes
- $column['comment'] = $row['Comment'];
- $column['extra'] = $row['Extra'];
- $column['key'] = $row['Key'];
- $column['privileges'] = $row['Privileges'];
- $columns[$row['Field']] = $column;
- }
- return $columns;
- }
- public function escape($value)
- {
- // Make sure the database is connected
- $this->_connection or $this->connect();
- if (($value = $this->_connection->real_escape_string( (string) $value)) === FALSE)
- {
- throw new Database_Exception(':error', [
- ':error' => $this->_connection->error,
- ], $this->_connection->errno);
- }
- // SQL standard is to use single-quotes for all values
- return "'$value'";
- }
- } // End Database_MySQLi
|