| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * The PEAR DB driver for PHP's sqlite extension | 
					
						
							|  |  |  |  * for interacting with SQLite databases | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2015-02-12 22:00:50 +01:00
										 |  |  |  * PHP version 5 | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * LICENSE: This source file is subject to version 3.0 of the PHP license | 
					
						
							|  |  |  |  * that is available through the world-wide-web at the following URI: | 
					
						
							|  |  |  |  * http://www.php.net/license/3_0.txt.  If you did not receive a copy of | 
					
						
							|  |  |  |  * the PHP License and are unable to obtain it through the web, please | 
					
						
							|  |  |  |  * send a note to license@php.net so we can mail you a copy immediately. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category   Database | 
					
						
							|  |  |  |  * @package    DB | 
					
						
							|  |  |  |  * @author     Urs Gehrig <urs@circle.ch> | 
					
						
							|  |  |  |  * @author     Mika Tuupola <tuupola@appelsiini.net> | 
					
						
							|  |  |  |  * @author     Daniel Convissor <danielc@php.net> | 
					
						
							|  |  |  |  * @copyright  1997-2007 The PHP Group | 
					
						
							|  |  |  |  * @license    http://www.php.net/license/3_0.txt  PHP License 3.0 3.0 | 
					
						
							| 
									
										
										
										
											2015-02-12 22:00:50 +01:00
										 |  |  |  * @version    CVS: $Id$ | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |  * @link       http://pear.php.net/package/DB | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Obtain the DB_common class so it can be extended from | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  | //require_once 'DB/common.php';
 | 
					
						
							|  |  |  | require_once 'common.php'; | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * The methods PEAR DB uses to interact with PHP's sqlite extension | 
					
						
							|  |  |  |  * for interacting with SQLite databases | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * These methods overload the ones declared in DB_common. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * NOTICE:  This driver needs PHP's track_errors ini setting to be on. | 
					
						
							|  |  |  |  * It is automatically turned on when connecting to the database. | 
					
						
							|  |  |  |  * Make sure your scripts don't turn it off. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category   Database | 
					
						
							|  |  |  |  * @package    DB | 
					
						
							|  |  |  |  * @author     Urs Gehrig <urs@circle.ch> | 
					
						
							|  |  |  |  * @author     Mika Tuupola <tuupola@appelsiini.net> | 
					
						
							|  |  |  |  * @author     Daniel Convissor <danielc@php.net> | 
					
						
							|  |  |  |  * @copyright  1997-2007 The PHP Group | 
					
						
							|  |  |  |  * @license    http://www.php.net/license/3_0.txt  PHP License 3.0 3.0 | 
					
						
							| 
									
										
										
										
											2017-07-10 13:33:11 +02:00
										 |  |  |  * @version    Release: 1.9.2 | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |  * @link       http://pear.php.net/package/DB | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | class DB_sqlite extends DB_common | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     // {{{ properties
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * The DB driver type (mysql, oci8, odbc, etc.) | 
					
						
							|  |  |  |      * @var string | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |     public $phptype = 'sqlite'; | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * The database syntax variant to be used (db2, access, etc.), if any | 
					
						
							|  |  |  |      * @var string | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |     public $dbsyntax = 'sqlite'; | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * The capabilities of this DB implementation | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * The 'new_link' element contains the PHP version that first provided | 
					
						
							|  |  |  |      * new_link support for this DBMS.  Contains false if it's unsupported. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Meaning of the 'limit' element: | 
					
						
							|  |  |  |      *   + 'emulate' = emulate with fetch row by number | 
					
						
							|  |  |  |      *   + 'alter'   = alter the query | 
					
						
							|  |  |  |      *   + false     = skip rows | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var array | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |     public $features = array( | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |         'limit' => 'alter', | 
					
						
							|  |  |  |         'new_link' => false, | 
					
						
							|  |  |  |         'numrows' => true, | 
					
						
							|  |  |  |         'pconnect' => true, | 
					
						
							|  |  |  |         'prepare' => false, | 
					
						
							|  |  |  |         'ssl' => false, | 
					
						
							|  |  |  |         'transactions' => false, | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |     ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * A mapping of native error codes to DB error codes | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * {@internal  Error codes according to sqlite_exec.  See the online | 
					
						
							|  |  |  |      * manual at http://sqlite.org/c_interface.html for info. | 
					
						
							|  |  |  |      * This error handling based on sqlite_exec is not yet implemented.}} | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var array | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |     public $errorcode_map = array(); | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * The raw database connection created by PHP | 
					
						
							|  |  |  |      * @var resource | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |     public $connection; | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * The DSN information for connecting to a database | 
					
						
							|  |  |  |      * @var array | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |     public $dsn = array(); | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * SQLite data types | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @link http://www.sqlite.org/datatypes.html | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var array | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |     public $keywords = array( | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |         'BLOB' => '', | 
					
						
							|  |  |  |         'BOOLEAN' => '', | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |         'CHARACTER' => '', | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |         'CLOB' => '', | 
					
						
							|  |  |  |         'FLOAT' => '', | 
					
						
							|  |  |  |         'INTEGER' => '', | 
					
						
							|  |  |  |         'KEY' => '', | 
					
						
							|  |  |  |         'NATIONAL' => '', | 
					
						
							|  |  |  |         'NUMERIC' => '', | 
					
						
							|  |  |  |         'NVARCHAR' => '', | 
					
						
							|  |  |  |         'PRIMARY' => '', | 
					
						
							|  |  |  |         'TEXT' => '', | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |         'TIMESTAMP' => '', | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |         'UNIQUE' => '', | 
					
						
							|  |  |  |         'VARCHAR' => '', | 
					
						
							|  |  |  |         'VARYING' => '', | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |     ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * The most recent error message from $php_errormsg | 
					
						
							|  |  |  |      * @var string | 
					
						
							|  |  |  |      * @access private | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |     public $_lasterror = ''; | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // }}}
 | 
					
						
							|  |  |  |     // {{{ constructor
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2017-07-10 13:33:11 +02:00
										 |  |  |      * This constructor calls <kbd>parent::__construct()</kbd> | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |     public function __construct() | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2017-07-10 13:33:11 +02:00
										 |  |  |         parent::__construct(); | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // }}}
 | 
					
						
							|  |  |  |     // {{{ connect()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Connect to the database server, log in and open the database | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Don't call this method directly.  Use DB::connect() instead. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * PEAR DB's sqlite driver supports the following extra DSN options: | 
					
						
							|  |  |  |      *   + mode  The permissions for the database file, in four digit | 
					
						
							|  |  |  |      *            chmod octal format (eg "0600"). | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Example of connecting to a database in read-only mode: | 
					
						
							|  |  |  |      * <code> | 
					
						
							|  |  |  |      * require_once 'DB.php'; | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |      * $dsn = 'sqlite:///path/and/name/of/db/file?mode=0400'; | 
					
						
							|  |  |  |      * $options = array( | 
					
						
							|  |  |  |      *     'portability' => DB_PORTABILITY_ALL, | 
					
						
							|  |  |  |      * ); | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |      * $db = DB::connect($dsn, $options); | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |      * if ((new PEAR)->isError($db)) { | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |      *     die($db->getMessage()); | 
					
						
							|  |  |  |      * } | 
					
						
							|  |  |  |      * </code> | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |      * @param array $dsn the data source name | 
					
						
							|  |  |  |      * @param bool $persistent should the connection be persistent? | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |      * @return int|object | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |     public function connect($dsn, $persistent = false) | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         if (!PEAR::loadExtension('sqlite')) { | 
					
						
							|  |  |  |             return $this->raiseError(DB_ERROR_EXTENSION_NOT_FOUND); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->dsn = $dsn; | 
					
						
							|  |  |  |         if ($dsn['dbsyntax']) { | 
					
						
							|  |  |  |             $this->dbsyntax = $dsn['dbsyntax']; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!$dsn['database']) { | 
					
						
							|  |  |  |             return $this->sqliteRaiseError(DB_ERROR_ACCESS_VIOLATION); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($dsn['database'] !== ':memory:') { | 
					
						
							|  |  |  |             if (!file_exists($dsn['database'])) { | 
					
						
							|  |  |  |                 if (!touch($dsn['database'])) { | 
					
						
							|  |  |  |                     return $this->sqliteRaiseError(DB_ERROR_NOT_FOUND); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 if (!isset($dsn['mode']) || | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |                     !is_numeric($dsn['mode'])) { | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |                     $mode = 0644; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     $mode = octdec($dsn['mode']); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 if (!chmod($dsn['database'], $mode)) { | 
					
						
							|  |  |  |                     return $this->sqliteRaiseError(DB_ERROR_NOT_FOUND); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 if (!file_exists($dsn['database'])) { | 
					
						
							|  |  |  |                     return $this->sqliteRaiseError(DB_ERROR_NOT_FOUND); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (!is_file($dsn['database'])) { | 
					
						
							|  |  |  |                 return $this->sqliteRaiseError(DB_ERROR_INVALID); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (!is_readable($dsn['database'])) { | 
					
						
							|  |  |  |                 return $this->sqliteRaiseError(DB_ERROR_ACCESS_VIOLATION); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $connect_function = $persistent ? 'sqlite_popen' : 'sqlite_open'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // track_errors must remain on for simpleQuery()
 | 
					
						
							|  |  |  |         @ini_set('track_errors', 1); | 
					
						
							|  |  |  |         $php_errormsg = ''; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!$this->connection = @$connect_function($dsn['database'])) { | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |             return $this->raiseError( | 
					
						
							|  |  |  |                 DB_ERROR_NODBSELECTED, | 
					
						
							|  |  |  |                 null, | 
					
						
							|  |  |  |                 null, | 
					
						
							|  |  |  |                 null, | 
					
						
							|  |  |  |                 $php_errormsg | 
					
						
							|  |  |  |             ); | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |         } | 
					
						
							|  |  |  |         return DB_OK; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // }}}
 | 
					
						
							|  |  |  |     // {{{ disconnect()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Produces a DB_Error object regarding the current problem | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param int $errno if the error is being manually raised pass a | 
					
						
							|  |  |  |      *                     DB_ERROR* constant here.  If this isn't passed | 
					
						
							|  |  |  |      *                     the error information gathered from the DBMS. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return object  the DB_Error object | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @see DB_common::raiseError(), | 
					
						
							|  |  |  |      *      DB_sqlite::errorNative(), DB_sqlite::errorCode() | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function sqliteRaiseError($errno = null) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $native = $this->errorNative(); | 
					
						
							|  |  |  |         if ($errno === null) { | 
					
						
							|  |  |  |             $errno = $this->errorCode($native); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $errorcode = @sqlite_last_error($this->connection); | 
					
						
							|  |  |  |         $userinfo = "$errorcode ** $this->last_query"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $this->raiseError($errno, null, null, $userinfo, $native); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // }}}
 | 
					
						
							|  |  |  |     // {{{ simpleQuery()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Gets the DBMS' native error message produced by the last query | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * {@internal This is used to retrieve more meaningfull error messages | 
					
						
							|  |  |  |      * because sqlite_last_error() does not provide adequate info.}} | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return string  the DBMS' error message | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function errorNative() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return $this->_lasterror; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // }}}
 | 
					
						
							|  |  |  |     // {{{ nextResult()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Determines PEAR::DB error code from the database's text error message | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param string $errormsg the error message returned from the database | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return integer  the DB error number | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function errorCode($errormsg) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         static $error_regexps; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // PHP 5.2+ prepends the function name to $php_errormsg, so we need
 | 
					
						
							|  |  |  |         // this hack to work around it, per bug #9599.
 | 
					
						
							|  |  |  |         $errormsg = preg_replace('/^sqlite[a-z_]+\(\): /', '', $errormsg); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!isset($error_regexps)) { | 
					
						
							|  |  |  |             $error_regexps = array( | 
					
						
							|  |  |  |                 '/^no such table:/' => DB_ERROR_NOSUCHTABLE, | 
					
						
							|  |  |  |                 '/^no such index:/' => DB_ERROR_NOT_FOUND, | 
					
						
							|  |  |  |                 '/^(table|index) .* already exists$/' => DB_ERROR_ALREADY_EXISTS, | 
					
						
							|  |  |  |                 '/PRIMARY KEY must be unique/i' => DB_ERROR_CONSTRAINT, | 
					
						
							|  |  |  |                 '/is not unique/' => DB_ERROR_CONSTRAINT, | 
					
						
							|  |  |  |                 '/columns .* are not unique/i' => DB_ERROR_CONSTRAINT, | 
					
						
							|  |  |  |                 '/uniqueness constraint failed/' => DB_ERROR_CONSTRAINT, | 
					
						
							|  |  |  |                 '/may not be NULL/' => DB_ERROR_CONSTRAINT_NOT_NULL, | 
					
						
							|  |  |  |                 '/^no such column:/' => DB_ERROR_NOSUCHFIELD, | 
					
						
							|  |  |  |                 '/no column named/' => DB_ERROR_NOSUCHFIELD, | 
					
						
							|  |  |  |                 '/column not present in both tables/i' => DB_ERROR_NOSUCHFIELD, | 
					
						
							|  |  |  |                 '/^near ".*": syntax error$/' => DB_ERROR_SYNTAX, | 
					
						
							|  |  |  |                 '/[0-9]+ values for [0-9]+ columns/i' => DB_ERROR_VALUE_COUNT_ON_ROW, | 
					
						
							|  |  |  |             ); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         foreach ($error_regexps as $regexp => $code) { | 
					
						
							|  |  |  |             if (preg_match($regexp, $errormsg)) { | 
					
						
							|  |  |  |                 return $code; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         // Fall back to DB_ERROR if there was no mapping.
 | 
					
						
							|  |  |  |         return DB_ERROR; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // }}}
 | 
					
						
							|  |  |  |     // {{{ fetchInto()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Disconnects from the database server | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |      * @return bool|void | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |     public function disconnect() | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         $ret = @sqlite_close($this->connection); | 
					
						
							|  |  |  |         $this->connection = null; | 
					
						
							|  |  |  |         return $ret; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // }}}
 | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |     // {{{ freeResult()
 | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Sends a query to the database server | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * NOTICE:  This method needs PHP's track_errors ini setting to be on. | 
					
						
							|  |  |  |      * It is automatically turned on when connecting to the database. | 
					
						
							|  |  |  |      * Make sure your scripts don't turn it off. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param string  the SQL query string | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return mixed  + a PHP result resrouce for successful SELECT queries | 
					
						
							|  |  |  |      *                + the DB_OK constant for other successful queries | 
					
						
							|  |  |  |      *                + a DB_Error object on failure | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |     public function simpleQuery($query) | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         $ismanip = $this->_checkManip($query); | 
					
						
							|  |  |  |         $this->last_query = $query; | 
					
						
							|  |  |  |         $query = $this->modifyQuery($query); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $php_errormsg = ''; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $result = @sqlite_query($query, $this->connection); | 
					
						
							|  |  |  |         $this->_lasterror = $php_errormsg ? $php_errormsg : ''; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->result = $result; | 
					
						
							|  |  |  |         if (!$this->result) { | 
					
						
							|  |  |  |             return $this->sqliteRaiseError(null); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // sqlite_query() seems to allways return a resource
 | 
					
						
							|  |  |  |         // so cant use that. Using $ismanip instead
 | 
					
						
							|  |  |  |         if (!$ismanip) { | 
					
						
							|  |  |  |             $numRows = $this->numRows($result); | 
					
						
							|  |  |  |             if (is_object($numRows)) { | 
					
						
							|  |  |  |                 // we've got PEAR_Error
 | 
					
						
							|  |  |  |                 return $numRows; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             return $result; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return DB_OK; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // }}}
 | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |     // {{{ numCols()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Changes a query string for various DBMS specific reasons | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * This little hack lets you know how many rows were deleted | 
					
						
							|  |  |  |      * when running a "DELETE FROM table" query.  Only implemented | 
					
						
							|  |  |  |      * if the DB_PORTABILITY_DELETE_COUNT portability option is on. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param string $query the query string to modify | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return string  the modified query string | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @access protected | 
					
						
							|  |  |  |      * @see DB_common::setOption() | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function modifyQuery($query) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if ($this->options['portability'] & DB_PORTABILITY_DELETE_COUNT) { | 
					
						
							|  |  |  |             if (preg_match('/^\s*DELETE\s+FROM\s+(\S+)\s*$/i', $query)) { | 
					
						
							|  |  |  |                 $query = preg_replace( | 
					
						
							|  |  |  |                     '/^\s*DELETE\s+FROM\s+(\S+)\s*$/', | 
					
						
							|  |  |  |                     'DELETE FROM \1 WHERE 1=1', | 
					
						
							|  |  |  |                     $query | 
					
						
							|  |  |  |                 ); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return $query; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // }}}
 | 
					
						
							|  |  |  |     // {{{ numRows()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Gets the number of rows in a result set | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * This method is not meant to be called directly.  Use | 
					
						
							|  |  |  |      * DB_result::numRows() instead.  It can't be declared "protected" | 
					
						
							|  |  |  |      * because DB_result is a separate object. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param resource $result PHP's query result resource | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return int|object | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @see DB_result::numRows() | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function numRows($result) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $rows = @sqlite_num_rows($result); | 
					
						
							|  |  |  |         if ($rows === null) { | 
					
						
							|  |  |  |             return $this->sqliteRaiseError(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return $rows; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // }}}
 | 
					
						
							|  |  |  |     // {{{ affected()
 | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Move the internal sqlite result pointer to the next available result | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |      * @param resource $result the valid sqlite result resource | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return bool  true if a result is available otherwise return false | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |     public function nextResult($result) | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // }}}
 | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |     // {{{ dropSequence()
 | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Places a row from the result set into the given array | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Formating of the array and the data therein are configurable. | 
					
						
							|  |  |  |      * See DB_result::fetchInto() for more information. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * This method is not meant to be called directly.  Use | 
					
						
							|  |  |  |      * DB_result::fetchInto() instead.  It can't be declared "protected" | 
					
						
							|  |  |  |      * because DB_result is a separate object. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |      * @param resource $result the query result resource | 
					
						
							|  |  |  |      * @param array $arr the referenced array to put the data in | 
					
						
							|  |  |  |      * @param int $fetchmode how the resulting array should be indexed | 
					
						
							|  |  |  |      * @param int $rownum the row number to fetch (0 = first row) | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return mixed  DB_OK on success, NULL when the end of a result set is | 
					
						
							|  |  |  |      *                 reached or on failure | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @see DB_result::fetchInto() | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |     public function fetchInto($result, &$arr, $fetchmode, $rownum = null) | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         if ($rownum !== null) { | 
					
						
							|  |  |  |             if (!@sqlite_seek($this->result, $rownum)) { | 
					
						
							|  |  |  |                 return null; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if ($fetchmode & DB_FETCHMODE_ASSOC) { | 
					
						
							|  |  |  |             $arr = @sqlite_fetch_array($result, SQLITE_ASSOC); | 
					
						
							|  |  |  |             if ($this->options['portability'] & DB_PORTABILITY_LOWERCASE && $arr) { | 
					
						
							|  |  |  |                 $arr = array_change_key_case($arr, CASE_LOWER); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /* Remove extraneous " characters from the fields in the result.
 | 
					
						
							|  |  |  |              * Fixes bug #11716. */
 | 
					
						
							|  |  |  |             if (is_array($arr) && count($arr) > 0) { | 
					
						
							|  |  |  |                 $strippedArr = array(); | 
					
						
							|  |  |  |                 foreach ($arr as $field => $value) { | 
					
						
							|  |  |  |                     $strippedArr[trim($field, '"')] = $value; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 $arr = $strippedArr; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $arr = @sqlite_fetch_array($result, SQLITE_NUM); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (!$arr) { | 
					
						
							|  |  |  |             return null; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if ($this->options['portability'] & DB_PORTABILITY_RTRIM) { | 
					
						
							|  |  |  |             /* | 
					
						
							|  |  |  |              * Even though this DBMS already trims output, we do this because | 
					
						
							|  |  |  |              * a field might have intentional whitespace at the end that | 
					
						
							|  |  |  |              * gets removed by DB_PORTABILITY_RTRIM under another driver. | 
					
						
							|  |  |  |              */ | 
					
						
							|  |  |  |             $this->_rtrimArrayValues($arr); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if ($this->options['portability'] & DB_PORTABILITY_NULL_TO_EMPTY) { | 
					
						
							|  |  |  |             $this->_convertNullArrayValuesToEmpty($arr); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return DB_OK; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Deletes the result set and frees the memory occupied by the result set | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * This method is not meant to be called directly.  Use | 
					
						
							|  |  |  |      * DB_result::free() instead.  It can't be declared "protected" | 
					
						
							|  |  |  |      * because DB_result is a separate object. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |      * @param resource $result PHP's query result resource | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return bool  TRUE on success, FALSE if $result is invalid | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @see DB_result::free() | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |     public function freeResult(&$result) | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         // XXX No native free?
 | 
					
						
							|  |  |  |         if (!is_resource($result)) { | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $result = null; | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // }}}
 | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |     // {{{ nextId()
 | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Gets the number of columns in a result set | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * This method is not meant to be called directly.  Use | 
					
						
							|  |  |  |      * DB_result::numCols() instead.  It can't be declared "protected" | 
					
						
							|  |  |  |      * because DB_result is a separate object. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |      * @param resource $result PHP's query result resource | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |      * @return int|object | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @see DB_result::numCols() | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |     public function numCols($result) | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         $cols = @sqlite_num_fields($result); | 
					
						
							|  |  |  |         if (!$cols) { | 
					
						
							|  |  |  |             return $this->sqliteRaiseError(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return $cols; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // }}}
 | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |     // {{{ getDbFileStats()
 | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Determines the number of rows affected by a data maniuplation query | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * 0 is returned for queries that don't manipulate data. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return int  the number of rows.  A DB_Error object on failure. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |     public function affectedRows() | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         return @sqlite_changes($this->connection); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // }}}
 | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |     // {{{ escapeSimple()
 | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Deletes a sequence | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |      * @param string $seq_name name of the sequence to be deleted | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return int  DB_OK on success.  A DB_Error object on failure. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @see DB_common::dropSequence(), DB_common::getSequenceName(), | 
					
						
							|  |  |  |      *      DB_sqlite::nextID(), DB_sqlite::createSequence() | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |     public function dropSequence($seq_name) | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         return $this->query('DROP TABLE ' . $this->getSequenceName($seq_name)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // }}}
 | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |     // {{{ modifyLimitQuery()
 | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Returns the next free id in a sequence | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |      * @param string $seq_name name of the sequence | 
					
						
							|  |  |  |      * @param boolean $ondemand when true, the seqence is automatically | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |      *                            created if it does not exist | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |      * @return int|object | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |      *               A DB_Error object on failure. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @see DB_common::nextID(), DB_common::getSequenceName(), | 
					
						
							|  |  |  |      *      DB_sqlite::createSequence(), DB_sqlite::dropSequence() | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |     public function nextId($seq_name, $ondemand = true) | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         $seqname = $this->getSequenceName($seq_name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         do { | 
					
						
							|  |  |  |             $repeat = 0; | 
					
						
							|  |  |  |             $this->pushErrorHandling(PEAR_ERROR_RETURN); | 
					
						
							|  |  |  |             $result = $this->query("INSERT INTO $seqname (id) VALUES (NULL)"); | 
					
						
							|  |  |  |             $this->popErrorHandling(); | 
					
						
							|  |  |  |             if ($result === DB_OK) { | 
					
						
							|  |  |  |                 $id = @sqlite_last_insert_rowid($this->connection); | 
					
						
							|  |  |  |                 if ($id != 0) { | 
					
						
							|  |  |  |                     return $id; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } elseif ($ondemand && DB::isError($result) && | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |                 $result->getCode() == DB_ERROR_NOSUCHTABLE) { | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |                 $result = $this->createSequence($seq_name); | 
					
						
							|  |  |  |                 if (DB::isError($result)) { | 
					
						
							|  |  |  |                     return $this->raiseError($result); | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     $repeat = 1; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } while ($repeat); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $this->raiseError($result); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // }}}
 | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |     // {{{ modifyQuery()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Creates a new sequence | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param string $seq_name name of the new sequence | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return int  DB_OK on success.  A DB_Error object on failure. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @see DB_common::createSequence(), DB_common::getSequenceName(), | 
					
						
							|  |  |  |      *      DB_sqlite::nextID(), DB_sqlite::dropSequence() | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function createSequence($seq_name) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $seqname = $this->getSequenceName($seq_name); | 
					
						
							|  |  |  |         $query = 'CREATE TABLE ' . $seqname . | 
					
						
							|  |  |  |             ' (id INTEGER UNSIGNED PRIMARY KEY) '; | 
					
						
							|  |  |  |         $result = $this->query($query); | 
					
						
							|  |  |  |         if (DB::isError($result)) { | 
					
						
							|  |  |  |             return ($result); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $query = "CREATE TRIGGER ${seqname}_cleanup AFTER INSERT ON $seqname
 | 
					
						
							|  |  |  |                     BEGIN | 
					
						
							|  |  |  |                         DELETE FROM $seqname WHERE id<LAST_INSERT_ROWID(); | 
					
						
							|  |  |  |                     END ";
 | 
					
						
							|  |  |  |         $result = $this->query($query); | 
					
						
							|  |  |  |         //if (DB::isError($result)) {
 | 
					
						
							|  |  |  |             return ($result); | 
					
						
							|  |  |  |         //}
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // }}}
 | 
					
						
							|  |  |  |     // {{{ sqliteRaiseError()
 | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Get the file stats for the current database | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Possible arguments are dev, ino, mode, nlink, uid, gid, rdev, size, | 
					
						
							|  |  |  |      * atime, mtime, ctime, blksize, blocks or a numeric key between | 
					
						
							|  |  |  |      * 0 and 12. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |      * @param string $arg the array key for stats() | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return mixed  an array on an unspecified key, integer on a passed | 
					
						
							|  |  |  |      *                arg and false at a stats error | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |     public function getDbFileStats($arg = '') | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         $stats = stat($this->dsn['database']); | 
					
						
							|  |  |  |         if ($stats == false) { | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (is_array($stats)) { | 
					
						
							|  |  |  |             if (is_numeric($arg)) { | 
					
						
							|  |  |  |                 if (((int)$arg <= 12) & ((int)$arg >= 0)) { | 
					
						
							|  |  |  |                     return false; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |                 return $stats[$arg]; | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |             } | 
					
						
							|  |  |  |             if (array_key_exists(trim($arg), $stats)) { | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |                 return $stats[$arg]; | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return $stats; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // }}}
 | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |     // {{{ errorNative()
 | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Escapes a string according to the current DBMS's standards | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * In SQLite, this makes things safe for inserts/updates, but may | 
					
						
							|  |  |  |      * cause problems when performing text comparisons against columns | 
					
						
							|  |  |  |      * containing binary data. See the | 
					
						
							|  |  |  |      * {@link http://php.net/sqlite_escape_string PHP manual} for more info. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |      * @param string $str the string to be escaped | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return string  the escaped string | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @since Method available since Release 1.6.1 | 
					
						
							|  |  |  |      * @see DB_common::escapeSimple() | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |     public function escapeSimple($str) | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         return @sqlite_escape_string($str); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // }}}
 | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |     // {{{ errorCode()
 | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Adds LIMIT clauses to a query string according to current DBMS standards | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |      * @param string $query the query to modify | 
					
						
							|  |  |  |      * @param int $from the row to start to fetching (0 = the first row) | 
					
						
							|  |  |  |      * @param int $count the numbers of rows to fetch | 
					
						
							|  |  |  |      * @param mixed $params array, string or numeric data to be used in | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |      *                         execution of the statement.  Quantity of items | 
					
						
							|  |  |  |      *                         passed must match quantity of placeholders in | 
					
						
							|  |  |  |      *                         query:  meaning 1 placeholder for non-array | 
					
						
							|  |  |  |      *                         parameters or 1 placeholder per array element. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return string  the query string with LIMIT clauses added | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @access protected | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |     public function modifyLimitQuery($query, $from, $count, $params = array()) | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         return "$query LIMIT $count OFFSET $from"; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // }}}
 | 
					
						
							|  |  |  |     // {{{ tableInfo()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Returns information about a table | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |      * @param string $result a string containing the name of a table | 
					
						
							|  |  |  |      * @param int $mode a valid tableInfo mode | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |      * @return array|object | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |      *                 A DB_Error object on failure. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @see DB_common::tableInfo() | 
					
						
							|  |  |  |      * @since Method available since Release 1.7.0 | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |     public function tableInfo($result, $mode = null) | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         if (is_string($result)) { | 
					
						
							|  |  |  |             /* | 
					
						
							|  |  |  |              * Probably received a table name. | 
					
						
							|  |  |  |              * Create a result resource identifier. | 
					
						
							|  |  |  |              */ | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |             $id = @sqlite_array_query( | 
					
						
							|  |  |  |                 $this->connection, | 
					
						
							|  |  |  |                 "PRAGMA table_info('$result');", | 
					
						
							|  |  |  |                 SQLITE_ASSOC | 
					
						
							|  |  |  |             ); | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |             $got_string = true; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $this->last_query = ''; | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |             return $this->raiseError( | 
					
						
							|  |  |  |                 DB_ERROR_NOT_CAPABLE, | 
					
						
							|  |  |  |                 null, | 
					
						
							|  |  |  |                 null, | 
					
						
							|  |  |  |                 null, | 
					
						
							|  |  |  |                 'This DBMS can not obtain tableInfo' . | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |                 ' from result sets' | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |             ); | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($this->options['portability'] & DB_PORTABILITY_LOWERCASE) { | 
					
						
							|  |  |  |             $case_func = 'strtolower'; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $case_func = 'strval'; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $count = count($id); | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |         $res = array(); | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if ($mode) { | 
					
						
							|  |  |  |             $res['num_fields'] = $count; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for ($i = 0; $i < $count; $i++) { | 
					
						
							|  |  |  |             if (strpos($id[$i]['type'], '(') !== false) { | 
					
						
							|  |  |  |                 $bits = explode('(', $id[$i]['type']); | 
					
						
							|  |  |  |                 $type = $bits[0]; | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |                 $len = rtrim($bits[1], ')'); | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |             } else { | 
					
						
							|  |  |  |                 $type = $id[$i]['type']; | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |                 $len = 0; | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $flags = ''; | 
					
						
							|  |  |  |             if ($id[$i]['pk']) { | 
					
						
							|  |  |  |                 $flags .= 'primary_key '; | 
					
						
							| 
									
										
										
										
											2015-02-12 22:00:50 +01:00
										 |  |  |                 if (strtoupper($type) == 'INTEGER') { | 
					
						
							|  |  |  |                     $flags .= 'auto_increment '; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |             } | 
					
						
							|  |  |  |             if ($id[$i]['notnull']) { | 
					
						
							|  |  |  |                 $flags .= 'not_null '; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if ($id[$i]['dflt_value'] !== null) { | 
					
						
							|  |  |  |                 $flags .= 'default_' . rawurlencode($id[$i]['dflt_value']); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             $flags = trim($flags); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $res[$i] = array( | 
					
						
							|  |  |  |                 'table' => $case_func($result), | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |                 'name' => $case_func($id[$i]['name']), | 
					
						
							|  |  |  |                 'type' => $type, | 
					
						
							|  |  |  |                 'len' => $len, | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |                 'flags' => $flags, | 
					
						
							|  |  |  |             ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if ($mode & DB_TABLEINFO_ORDER) { | 
					
						
							|  |  |  |                 $res['order'][$res[$i]['name']] = $i; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if ($mode & DB_TABLEINFO_ORDERTABLE) { | 
					
						
							|  |  |  |                 $res['ordertable'][$res[$i]['table']][$res[$i]['name']] = $i; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $res; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // }}}
 | 
					
						
							|  |  |  |     // {{{ getSpecialQuery()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Obtains the query string needed for listing a given type of objects | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |      * @param string $type the kind of objects you want to retrieve | 
					
						
							|  |  |  |      * @param array $args SQLITE DRIVER ONLY: a private array of arguments | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |      *                       used by the getSpecialQuery().  Do not use | 
					
						
							|  |  |  |      *                       this directly. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return string  the SQL query string or null if the driver doesn't | 
					
						
							|  |  |  |      *                  support the object type requested | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @access protected | 
					
						
							|  |  |  |      * @see DB_common::getListOf() | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |     public function getSpecialQuery($type, $args = array()) | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         if (!is_array($args)) { | 
					
						
							| 
									
										
										
										
											2019-04-16 00:20:20 +01:00
										 |  |  |             return $this->raiseError( | 
					
						
							|  |  |  |                 'no key specified', | 
					
						
							|  |  |  |                 null, | 
					
						
							|  |  |  |                 null, | 
					
						
							|  |  |  |                 null, | 
					
						
							|  |  |  |                 'Argument has to be an array.' | 
					
						
							|  |  |  |             ); | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         switch ($type) { | 
					
						
							|  |  |  |             case 'master': | 
					
						
							|  |  |  |                 return 'SELECT * FROM sqlite_master;'; | 
					
						
							|  |  |  |             case 'tables': | 
					
						
							|  |  |  |                 return "SELECT name FROM sqlite_master WHERE type='table' " | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |                     . 'UNION ALL SELECT name FROM sqlite_temp_master ' | 
					
						
							|  |  |  |                     . "WHERE type='table' ORDER BY name;"; | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |             case 'schema': | 
					
						
							|  |  |  |                 return 'SELECT sql FROM (SELECT * FROM sqlite_master ' | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |                     . 'UNION ALL SELECT * FROM sqlite_temp_master) ' | 
					
						
							|  |  |  |                     . "WHERE type!='meta' " | 
					
						
							|  |  |  |                     . 'ORDER BY tbl_name, type DESC, name;'; | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |             case 'schemax': | 
					
						
							|  |  |  |             case 'schema_x': | 
					
						
							|  |  |  |                 /* | 
					
						
							|  |  |  |                  * Use like: | 
					
						
							|  |  |  |                  * $res = $db->query($db->getSpecialQuery('schema_x', | 
					
						
							|  |  |  |                  *                   array('table' => 'table3'))); | 
					
						
							|  |  |  |                  */ | 
					
						
							|  |  |  |                 return 'SELECT sql FROM (SELECT * FROM sqlite_master ' | 
					
						
							| 
									
										
										
										
											2019-04-27 18:21:14 +01:00
										 |  |  |                     . 'UNION ALL SELECT * FROM sqlite_temp_master) ' | 
					
						
							|  |  |  |                     . "WHERE tbl_name LIKE '{$args['table']}' " | 
					
						
							|  |  |  |                     . "AND type!='meta' " | 
					
						
							|  |  |  |                     . 'ORDER BY type DESC, name;'; | 
					
						
							| 
									
										
										
										
											2008-08-22 09:17:14 -04:00
										 |  |  |             case 'alter': | 
					
						
							|  |  |  |                 /* | 
					
						
							|  |  |  |                  * SQLite does not support ALTER TABLE; this is a helper query | 
					
						
							|  |  |  |                  * to handle this. 'table' represents the table name, 'rows' | 
					
						
							|  |  |  |                  * the news rows to create, 'save' the row(s) to keep _with_ | 
					
						
							|  |  |  |                  * the data. | 
					
						
							|  |  |  |                  * | 
					
						
							|  |  |  |                  * Use like: | 
					
						
							|  |  |  |                  * $args = array( | 
					
						
							|  |  |  |                  *     'table' => $table, | 
					
						
							|  |  |  |                  *     'rows'  => "id INTEGER PRIMARY KEY, firstname TEXT, surname TEXT, datetime TEXT", | 
					
						
							|  |  |  |                  *     'save'  => "NULL, titel, content, datetime" | 
					
						
							|  |  |  |                  * ); | 
					
						
							|  |  |  |                  * $res = $db->query( $db->getSpecialQuery('alter', $args)); | 
					
						
							|  |  |  |                  */ | 
					
						
							|  |  |  |                 $rows = strtr($args['rows'], $this->keywords); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 $q = array( | 
					
						
							|  |  |  |                     'BEGIN TRANSACTION', | 
					
						
							|  |  |  |                     "CREATE TEMPORARY TABLE {$args['table']}_backup ({$args['rows']})", | 
					
						
							|  |  |  |                     "INSERT INTO {$args['table']}_backup SELECT {$args['save']} FROM {$args['table']}", | 
					
						
							|  |  |  |                     "DROP TABLE {$args['table']}", | 
					
						
							|  |  |  |                     "CREATE TABLE {$args['table']} ({$args['rows']})", | 
					
						
							|  |  |  |                     "INSERT INTO {$args['table']} SELECT {$rows} FROM {$args['table']}_backup", | 
					
						
							|  |  |  |                     "DROP TABLE {$args['table']}_backup", | 
					
						
							|  |  |  |                     'COMMIT', | 
					
						
							|  |  |  |                 ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 /* | 
					
						
							|  |  |  |                  * This is a dirty hack, since the above query will not get | 
					
						
							|  |  |  |                  * executed with a single query call so here the query method | 
					
						
							|  |  |  |                  * will be called directly and return a select instead. | 
					
						
							|  |  |  |                  */ | 
					
						
							|  |  |  |                 foreach ($q as $query) { | 
					
						
							|  |  |  |                     $this->query($query); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 return "SELECT * FROM {$args['table']};"; | 
					
						
							|  |  |  |             default: | 
					
						
							|  |  |  |                 return null; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // }}}
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  |  * Local variables: | 
					
						
							|  |  |  |  * tab-width: 4 | 
					
						
							|  |  |  |  * c-basic-offset: 4 | 
					
						
							|  |  |  |  * End: | 
					
						
							|  |  |  |  */ |