Source for file sqlite.php
Documentation is available at sqlite.php
// +----------------------------------------------------------------------+
// +----------------------------------------------------------------------+
// | Copyright (c) 1998-2004 Manuel Lemos, Tomas V.V.Cox, |
// | Stig. S. Bakken, Lukas Smith |
// | All rights reserved. |
// +----------------------------------------------------------------------+
// | MDB2 is a merge of PEAR DB and Metabases that provides a unified DB |
// | API as well as database abstraction for PHP applications. |
// | This LICENSE is in the BSD license style. |
// | Redistribution and use in source and binary forms, with or without |
// | modification, are permitted provided that the following conditions |
// | Redistributions of source code must retain the above copyright |
// | notice, this list of conditions and the following disclaimer. |
// | Redistributions in binary form must reproduce the above copyright |
// | notice, this list of conditions and the following disclaimer in the |
// | documentation and/or other materials provided with the distribution. |
// | Neither the name of Manuel Lemos, Tomas V.V.Cox, Stig. S. Bakken, |
// | Lukas Smith nor the names of his contributors may be used to endorse |
// | or promote products derived from this software without specific prior|
// | written permission. |
// | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
// | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
// | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
// | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
// | REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
// | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
// | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS|
// | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
// | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
// | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY|
// | WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
// | POSSIBILITY OF SUCH DAMAGE. |
// +----------------------------------------------------------------------+
// | Author: Lukas Smith <smith@backendmedia.com> |
// +----------------------------------------------------------------------+
// $Id: sqlite.php,v 1.4 2004/04/09 10:41:21 lsmith Exp $
require_once 'MDB2/Driver/Reverse/Common.php';
* MDB2 SQlite driver for the schema reverse engineering module
* @author Lukas Smith <smith@backendmedia.com>
// {{{ getTableFieldDefinition()
* get the stucture of a field into an array
* @param string $table name of table that should be used in method
* @param string $field_name name of field that should be used in method
* @return mixed data array on success, a MDB2 error on failure
$db = & $GLOBALS['_MDB2_databases'][$this->db_index];
$query = " SELECT sql FROM sqlite_master WHERE type='table' AND name='$table'";
$result = $db->query ($query);
$columns = $result->getColumnNames ();
if (!isset ($columns[$column = 'sql'])) {
'getTableFieldDefinition: show columns does not return the column '. $column);
if (MDB2::isError($columns = $this->_getTableColumns ($sql))) {
$count = count($columns);
for ($i=0; $i< $count; ++ $i) {
if ($field_name == $columns[$i]['name']) {
$db_type = $columns[$i]['type'];
if ($columns[$i]['length'] && $columns[$i]['length'] == '1') {
if (isset ($columns[$i]['length']) && $columns[$i]['length'] == '1') {
} elseif (strstr($db_type, 'text'))
foreach ($matches[0 ] as $value) {
'getTableFieldDefinition: unknown database attribute type');
for ($field_choices = array (), $datatype = 0;
$datatype < count($type);
$field_choices[$datatype] = array ('type' => $type[$datatype]);
if (isset ($columns[$i]['notnull'])) {
$field_choices[$datatype]['notnull'] = true;
if (isset ($columns[$i]['default'])) {
$field_choices[$datatype]["default"]= $columns[$i]['default'];
if ($type[$datatype] != 'boolean'
&& $type[$datatype] != 'time'
&& $type[$datatype] != 'date'
&& $type[$datatype] != 'timestamp')
if (isset ($columns[$i]['length'])) {
$field_choices[$datatype]['length'] = $columns[$i]['length'];
$definition[0 ] = $field_choices;
if (isset($columns['extra'])
&& isset($row[$columns['extra']])
&& $row[$columns['extra']] == 'auto_increment')
$implicit_sequence = array();
$implicit_sequence['on'] = array();
$implicit_sequence['on']['table'] = $table;
$implicit_sequence['on']['field'] = $field_name;
$definition[1]['name'] = $table.'_'.$field_name;
$definition[1]['definition'] = $implicit_sequence;
if (isset($columns['key'])
&& isset($row[$columns['key']])
&& $row[$columns['key']] == 'PRI')
// check that its not just a unique field
if (MDB2::isError($indexes = $db->query("SHOW INDEX FROM $table", null, MDB2_FETCHMODE_ASSOC))) {
foreach ($indexes as $index) {
if ($index['key_name'] == 'PRIMARY' && $index['column_name'] == $field_name) {
$implicit_index = array();
$implicit_index['unique'] = true;
$implicit_index['fields'][$field_name] = '';
$definition[2]['name'] = $field_name;
$definition[2]['definition'] = $implicit_index;
'getTableFieldDefinition: it was not specified an existing table column');
// {{{ getTableIndexDefinition()
* get the stucture of an index into an array
* @param string $table name of table that should be used in method
* @param string $index_name name of index that should be used in method
* @return mixed data array on success, a MDB2 error on failure
$db = & $GLOBALS['_MDB2_databases'][$this->db_index];
if ($index_name == 'PRIMARY') {
'getTableIndexDefinition: PRIMARY is an hidden index');
$query = " SELECT sql FROM sqlite_master WHERE type='index' AND name='$index' AND tbl_name='$table' AND sql NOT NULL ORDER BY name";
$result = $db->query ($query);
$columns = $result->getColumnNames ();
if (!isset ($columns[$column])) {
return $db->raiseError ('getTableIndexDefinition: show index does not return the table creation sql');
$unique = strstr($sql, " unique ");
$start_pos = strpos($sql, "(");
$column_names = substr($sql, $start_pos+1 , $end_pos- $start_pos-1 );
$column_names = split(",", $column_names);
$definition['unique'] = true;
$count = count($column_names);
for ($i=0; $i< $count; ++ $i) {
$column_name = strtok($column_names[$i]," ");
$definition['fields'][$column_name] = array ();
if (!empty ($collation)) {
$definition['fields'][$column_name]['sorting'] = ($collation== 'ASC' ? 'ascending' : 'descending');
if (!isset ($definition['fields'])) {
'getTableIndexDefinition: it was not specified an existing table index');
Documentation generated on Mon, 11 Mar 2019 10:15:55 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|