1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
<?php
# Movable Type (r) Open Source (C) 2001-2008 Six Apart, Ltd.
# This program is distributed under the terms of the
# GNU General Public License, version 2.
#
# $Id: mtdb_sqlite.php 1997 2008-04-19 08:10:11Z takayama $
if (!class_exists("ezsql"))
require_once("ezsql".DIRECTORY_SEPARATOR."ezsql_sqlite.php");
require_once("mtdb_base.php");
class MTDatabase_sqlite extends MTDatabaseBase {
var $vendor = 'sqlite';
function MTDatabase_sqlite($dbuser, $dbpassword, $dbname, $dbhost, $dbport) {
parent::MTDatabaseBase($dbname);
}
function unserialize($data) {
$data = stripslashes($data); #SQLite uses addslashes for binary data
return parent::unserialize($data);
}
function &convert_fieldname($array) {
$converted = array();
foreach ($array as $key => $value) {
list ($t,$c) = explode('.', $key);
$converted[$c?$c:$t] = $value;
}
return $converted;
}
function apply_limit_sql($sql, $limit, $offset = 0) {
$limit = intval($limit);
$offset = intval($offset);
$limitStr = '';
if ($limit == -1) $limit = 0;
if ($limit)
$limitStr = 'limit ' . $limit;
if ($offset) {
$limitStr .= ' offset ' . $offset;
if (!$limit)
$limitStr = 'limit 2147483647' . $limitStr;
}
$sql = preg_replace('/<LIMIT>/', $limitStr, $sql);
return $sql;
}
function limit_by_day_sql($column, $days) {
return 'datetime(' . $column . ', \'+' .
$days . ' days\') >= date(\'now\', \'localtime\')';
}
function query_start($query)
{
// For reg expressions
$query = trim($query);
// Query was an insert, delete, update, replace
if ( preg_match("/^(insert|delete|update|replace)\s+/i",$query) )
{
return false;
}
$this->savedqueries[] = $query;
// Flush cached values..
$this->flush();
// Log how the function was called
$this->func_call = "\$db->query_start(\"$query\")";
// Keep track of the last query for debug..
$this->last_query = $query;
$this->result = @sqlite_query($query,$this->dbh);
$this->num_queries++;
// If there is an error then take note of it..
if ( !$this->result )
{
$this->print_error();
return false;
}
// =======================================================
// Take note of column info
#$i=0;
#foreach(@sqlite_fetch_field_array($handle) as $name)
#{
# $this->col_info[$i++]->name = $name;
#}
$this->last_result = array();
$this->num_rows = 0;
// If debug ALL queries
$this->trace || $this->debug_all ? $this->debug() : null ;
return true;
}
function query_fetch($output=OBJECT) {
if ( $row = sqlite_fetch_array($this->result, SQLITE_ASSOC) )
{
$row = (Object) $row;
$this->num_rows++;
if ( $output == OBJECT )
{
return $row;
}
// If the output is an associative array then return row as such..
elseif ( $output == ARRAY_A )
{
return $row ? $this->convert_fieldname(get_object_vars($row)) : null;
}
// If the output is an numerical array then return row as such..
elseif ( $output == ARRAY_N )
{
return $row ? array_values(get_object_vars($row)) : null;
}
}
return null;
}
function query_finish() {
if (isset($this->result)) {
unset($this->result);
}
}
function apply_extract_date($part, $column) {
$lowPart = strtolower($part);
if ($lowPart == 'year') {
$part = "'%Y'";
} elseif ($lowPart == 'month') {
$part = "'%m'";
} elseif ($lowPart == 'day') {
$part = "'%d'";
} else {
return null;
}
return "strftime($part, $column)";
}
}
?>
|