| Zeile 4... |
Zeile 4... |
| 4 |
*
|
4 |
*
|
| 5 |
* An open source application development framework for PHP
|
5 |
* An open source application development framework for PHP
|
| 6 |
*
|
6 |
*
|
| 7 |
* This content is released under the MIT License (MIT)
|
7 |
* This content is released under the MIT License (MIT)
|
| 8 |
*
|
8 |
*
|
| 9 |
* Copyright (c) 2014 - 2018, British Columbia Institute of Technology
|
9 |
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
| 10 |
*
|
10 |
*
|
| 11 |
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
11 |
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 12 |
* of this software and associated documentation files (the "Software"), to deal
|
12 |
* of this software and associated documentation files (the "Software"), to deal
|
| 13 |
* in the Software without restriction, including without limitation the rights
|
13 |
* in the Software without restriction, including without limitation the rights
|
| 14 |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
14 |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| Zeile 27... |
Zeile 27... |
| 27 |
* THE SOFTWARE.
|
27 |
* THE SOFTWARE.
|
| 28 |
*
|
28 |
*
|
| 29 |
* @package CodeIgniter
|
29 |
* @package CodeIgniter
|
| 30 |
* @author EllisLab Dev Team
|
30 |
* @author EllisLab Dev Team
|
| 31 |
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
31 |
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| 32 |
* @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
32 |
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
| 33 |
* @license http://opensource.org/licenses/MIT MIT License
|
33 |
* @license https://opensource.org/licenses/MIT MIT License
|
| 34 |
* @link https://codeigniter.com
|
34 |
* @link https://codeigniter.com
|
| 35 |
* @since Version 3.0.0
|
35 |
* @since Version 3.0.0
|
| 36 |
* @filesource
|
36 |
* @filesource
|
| 37 |
*/
|
37 |
*/
|
| 38 |
defined('BASEPATH') OR exit('No direct script access allowed');
|
38 |
defined('BASEPATH') OR exit('No direct script access allowed');
|
| Zeile 165... |
Zeile 165... |
| 165 |
empty($this->encrypt['ssl_cert']) OR $ssl[PDO::MYSQL_ATTR_SSL_CERT] = $this->encrypt['ssl_cert'];
|
165 |
empty($this->encrypt['ssl_cert']) OR $ssl[PDO::MYSQL_ATTR_SSL_CERT] = $this->encrypt['ssl_cert'];
|
| 166 |
empty($this->encrypt['ssl_ca']) OR $ssl[PDO::MYSQL_ATTR_SSL_CA] = $this->encrypt['ssl_ca'];
|
166 |
empty($this->encrypt['ssl_ca']) OR $ssl[PDO::MYSQL_ATTR_SSL_CA] = $this->encrypt['ssl_ca'];
|
| 167 |
empty($this->encrypt['ssl_capath']) OR $ssl[PDO::MYSQL_ATTR_SSL_CAPATH] = $this->encrypt['ssl_capath'];
|
167 |
empty($this->encrypt['ssl_capath']) OR $ssl[PDO::MYSQL_ATTR_SSL_CAPATH] = $this->encrypt['ssl_capath'];
|
| 168 |
empty($this->encrypt['ssl_cipher']) OR $ssl[PDO::MYSQL_ATTR_SSL_CIPHER] = $this->encrypt['ssl_cipher'];
|
168 |
empty($this->encrypt['ssl_cipher']) OR $ssl[PDO::MYSQL_ATTR_SSL_CIPHER] = $this->encrypt['ssl_cipher'];
|
| Zeile -... |
Zeile 169... |
| - |
|
169 |
|
| - |
|
170 |
if (defined('PDO::MYSQL_ATTR_SSL_VERIFY_SERVER_CERT') && isset($this->encrypt['ssl_verify']))
|
| - |
|
171 |
{
|
| - |
|
172 |
$ssl[PDO::MYSQL_ATTR_SSL_VERIFY_SERVER_CERT] = $this->encrypt['ssl_verify'];
|
| - |
|
173 |
}
|
| 169 |
|
174 |
|
| 170 |
// DO NOT use array_merge() here!
|
175 |
// DO NOT use array_merge() here!
|
| 171 |
// It re-indexes numeric keys and the PDO_MYSQL_ATTR_SSL_* constants are integers.
|
176 |
// It re-indexes numeric keys and the PDO_MYSQL_ATTR_SSL_* constants are integers.
|
| 172 |
empty($ssl) OR $this->options += $ssl;
|
177 |
empty($ssl) OR $this->options += $ssl;
|
| Zeile 272... |
Zeile 277... |
| 272 |
* @param bool $prefix_limit
|
277 |
* @param bool $prefix_limit
|
| 273 |
* @return string
|
278 |
* @return string
|
| 274 |
*/
|
279 |
*/
|
| 275 |
protected function _list_tables($prefix_limit = FALSE)
|
280 |
protected function _list_tables($prefix_limit = FALSE)
|
| 276 |
{
|
281 |
{
|
| 277 |
$sql = 'SHOW TABLES';
|
282 |
$sql = 'SHOW TABLES FROM '.$this->_escape_char.$this->database.$this->_escape_char;
|
| Zeile 278... |
Zeile 283... |
| 278 |
|
283 |
|
| 279 |
if ($prefix_limit === TRUE && $this->dbprefix !== '')
|
284 |
if ($prefix_limit === TRUE && $this->dbprefix !== '')
|
| 280 |
{
|
285 |
{
|
| 281 |
return $sql." LIKE '".$this->escape_like_str($this->dbprefix)."%'";
|
286 |
return $sql." LIKE '".$this->escape_like_str($this->dbprefix)."%'";
|