From 745b1466fc76d5ded589e2469328086002430c1c Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Wed, 22 Feb 2006 16:58:00 -0500 Subject: [PATCH] Updated localizations --- program/include/rcube_mdb2.inc | 76 ++++++++++++++++++++----------------- 1 files changed, 41 insertions(+), 35 deletions(-) diff --git a/program/include/rcube_mdb2.inc b/program/include/rcube_mdb2.inc index f87a9c0..54a40e7 100755 --- a/program/include/rcube_mdb2.inc +++ b/program/include/rcube_mdb2.inc @@ -102,39 +102,24 @@ } // Query database - function query() - { - $params = func_get_args(); - $query = array_shift($params); - - return $this->_query($query, 0, 0, $params); - } - function limitquery() - { $params = func_get_args(); - $query = array_shift($params); - $offset = array_shift($params); - $numrows = array_shift($params); - - return $this->_query($query, $offset, $numrows, $params); - } function _query($query, $offset, $numrows, $params) @@ -153,10 +138,10 @@ $this->db_handle->row_offset = $offset; $this->db_handle->row_limit = $numrows; - $result = $this->db_handle->query($query,$params); - //$q = $this->db_handle->prepare($query); - //$q->bindParamArray($params); - //$result = $q->execute(); + //$result = $this->db_handle->query($query,$params); + $q = $this->db_handle->prepare($query); + $q->bindParamArray($params); + $result = $q->execute(); if (PEAR::isError($result)) raise_error(array('code' => 500, @@ -167,6 +152,7 @@ return $this->_add_result($result, $query); } + function num_rows($res_id=NULL) { @@ -181,6 +167,7 @@ return FALSE; } + function affected_rows($res_id=NULL) { if (!$this->db_handle) @@ -188,6 +175,7 @@ return $this->db_handle->affectedRows(); } + function insert_id($sequence = '') { @@ -212,42 +200,60 @@ return $result->fetchRow(MDB2_FETCHMODE_ASSOC); } - function quoteIdentifier ( $str ) - { - + function quote($input, $type=null) + { if (!$this->db_handle) - $this->db_connect('r'); - + return $this->db_handle->quote($input, $type); + } + + + function quoteIdentifier($str) + { + if (!$this->db_handle) + $this->db_connect('r'); return $this->db_handle->quoteIdentifier($str); - } - - function unixtimestamp($field) + function quote_identifier($str) { + return $this->quoteIdentifier($str); + } + + function unixtimestamp($field) + { switch($this->db_provider) - { - case 'pgsql': - return "EXTRACT (EPOCH FROM $field)"; - break; default: - return "UNIX_TIMESTAMP($field)"; - } - } - + + + function format_date($timestamp) + { + switch($this->db_provider) + { + case 'mysqli': + case 'mysql': + return "FROM_UNIXTIME($timestamp)"; + break; + case 'sqlite': + return "datetime('$timestamp')"; + break; + default: + return date("Y-m-d H:i:s", $timestamp); + } + } + function _add_result($res, $query) { // sql error occured -- Gitblit v1.9.1