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
|
<?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_postgres.php 1554 2008-03-24 03:27:57Z takayama $
require_once("ezsql".DIRECTORY_SEPARATOR."ezsql_postgres.php");
require_once("mtdb_base.php");
class MTDatabase_postgres extends MTDatabaseBase {
var $vendor = 'postgres';
function unserialize($data) {
$data = pg_unescape_bytea($data);
return parent::unserialize($data);
}
function apply_limit_sql($sql, $limit, $offset = 0) {
$limit = intval($limit);
$offset = intval($offset);
$limitStr = '';
if ($limit == -1) $limit = 0;
if ($limit || $offset) {
if (!$limit) $limit = 'all';
$limitStr = ($offset ? 'offset ' . $offset : '') . ' limit '
. $limit;
}
$sql = preg_replace('/<LIMIT>/', $limitStr, $sql);
return $sql;
}
function limit_by_day_sql($column, $days) {
return '(' . $column . '+\'' . $days . ' days\' >= current_date)';
}
function entries_recently_commented_on_sql($subsql) {
$sql = "
select main.* from (
select distinct on (entry_id)
subs.*, comment_created_on
from ($subsql) as subs
inner join mt_comment on comment_entry_id = entry_id and comment_visible = 1
order by entry_id desc
) as main order by comment_created_on desc";
return $sql;
}
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;
}
// 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;
// Perform the query via std pg_query function..
if (!$this->result = @pg_query($this->dbh,$query)) {
$this->print_error();
return false;
}
$this->num_queries++;
// =======================================================
// Take note of column info
$i=0;
while ($i < @pg_num_fields($this->result))
{
$this->col_info[$i]->name = pg_field_name($this->result,$i);
$this->col_info[$i]->type = pg_field_type($this->result,$i);
$this->col_info[$i]->size = pg_field_size($this->result,$i);
$i++;
}
$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 = @pg_fetch_object($this->result) )
{
$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 $this->convert_fieldname(get_object_vars($row));
}
// If the output is an numerical array then return row as such..
elseif ( $output == ARRAY_N )
{
return array_values(get_object_vars($row));
}
}
return null;
}
function query_finish() {
if (isset($this->result)) {
@pg_free_result($this->result);
unset($this->result);
}
}
function apply_extract_date($part, $column) {
return "extract('" .strtolower($part) . "' from $column)";
}
function &fetch_unexpired_session($ids, $ttl = 0) {
$result = parent::fetch_unexpired_session($ids, $ttl);
for ($i = 0; $i < count($result); $i++) {
$result[$i]['session_data'] = pg_unescape_bytea($result[$i]['session_data']);
}
return $result;
}
}
?>
|