summaryrefslogtreecommitdiff
path: root/program/include/rcube_db.inc
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2006-02-19 17:39:26 +0000
committerthomascube <thomas@roundcube.net>2006-02-19 17:39:26 +0000
commit4de243309a28120921dc127ffbe071eb755d6ce9 (patch)
tree4571eb98644f2efed7c0c5b8299af44f4615af2a /program/include/rcube_db.inc
parent61971805f63a2f50e5f6dd05f2cd075b6857eee9 (diff)
Added fetch_array method
Diffstat (limited to 'program/include/rcube_db.inc')
-rwxr-xr-xprogram/include/rcube_db.inc34
1 files changed, 31 insertions, 3 deletions
diff --git a/program/include/rcube_db.inc b/program/include/rcube_db.inc
index b935e1d15..7cc29d225 100755
--- a/program/include/rcube_db.inc
+++ b/program/include/rcube_db.inc
@@ -35,7 +35,7 @@ require_once('DB.php');
* @package RoundCube Webmail
* @author David Saez Padros <david@ols.es>
* @author Thomas Bruederli <roundcube@gmail.com>
- * @version 1.14
+ * @version 1.16
* @link http://pear.php.net/package/DB
*/
class rcube_db
@@ -304,7 +304,35 @@ class rcube_db
function fetch_assoc($res_id=NULL)
{
$result = $this->_get_result($res_id);
+ return $this->_fetch_row($result, DB_FETCHMODE_ASSOC);
+ }
+
+
+ /**
+ * Get an index array for one row
+ * If no query handle is specified, the last query will be taken as reference
+ *
+ * @param number Optional query handle identifier
+ * @return mixed Array with col values or FALSE on failure
+ * @access public
+ */
+ function fetch_array($res_id=NULL)
+ {
+ $result = $this->_get_result($res_id);
+ return $this->_fetch_row($result, DB_FETCHMODE_ORDERED);
+ }
+
+ /**
+ * Get co values for a result row
+ *
+ * @param object Query result handle
+ * @param number Fetch mode identifier
+ * @return mixed Array with col values or FALSE on failure
+ * @access private
+ */
+ function _fetch_row($result, $mode)
+ {
if (DB::isError($result))
{
raise_error(array('code' => 500, 'type' => 'db', 'line' => __LINE__, 'file' => __FILE__,
@@ -312,9 +340,9 @@ class rcube_db
return FALSE;
}
- return $result->fetchRow(DB_FETCHMODE_ASSOC);
+ return $result->fetchRow($mode);
}
-
+
/**
* Formats input so it can be safely used in a query