From 12e5c1cea3d9b19b9237b758ed1f63754af0228f Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Wed, 12 Jan 2011 19:24:43 +0100 Subject: [PATCH] Iterator interface is the lowest common denominator. --- framework/Db/lib/Horde/Db/Adapter.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.11.0