From: Jan Schneider Date: Wed, 12 Jan 2011 18:24:43 +0000 (+0100) Subject: Iterator interface is the lowest common denominator. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=12e5c1cea3d9b19b9237b758ed1f63754af0228f;p=horde.git Iterator interface is the lowest common denominator. --- diff --git a/framework/Db/lib/Horde/Db/Adapter.php b/framework/Db/lib/Horde/Db/Adapter.php index 0e3e35f96..5d4283ef8 100644 --- a/framework/Db/lib/Horde/Db/Adapter.php +++ b/framework/Db/lib/Horde/Db/Adapter.php @@ -121,7 +121,7 @@ interface Horde_Db_Adapter * @param string $arg2 If $arg1 contains bound parameters, the query * name. * - * @return PDOStatement + * @return Iterator * @throws Horde_Db_Exception */ public function select($sql, $arg1 = null, $arg2 = null); @@ -211,7 +211,7 @@ interface Horde_Db_Adapter * @param string $arg2 If $arg1 contains bound parameters, the query * name. * - * @return PDOStatement + * @return Iterator * @throws Horde_Db_Exception */ public function execute($sql, $arg1 = null, $arg2 = null);