The branch "master" has been updated. The following is a summary of the commits.
from: 002217b71751edaf756d77641007d15b966b2dd0 5e369d2 Make more methods abstract. fc14c3c Already defined in base class. ed92d8a [jan] Always return a Horde_Db_Adapter_Base_Result sub-class from the select() method. c92f78f AVoid strict error. bc4f4a7 execute() won't go completely, just don't use it. ----------------------------------------------------------------------- commit 5e369d250b03912cfce85c43e91324598677ffbd Author: Jan Schneider <[email protected]> Date: Thu Sep 12 15:19:39 2013 +0200 Make more methods abstract. The implementation in the base method was PDO-specific anyway. framework/Db/doc/Horde/Db/UPGRADING | 5 +- framework/Db/lib/Horde/Db/Adapter/Base.php | 37 ++------------ framework/Db/lib/Horde/Db/Adapter/Mysqli.php | 10 +++- framework/Db/lib/Horde/Db/Adapter/Pdo/Base.php | 63 ++++++++++++++++++++++++ framework/Db/package.xml | 8 ++-- 5 files changed, 82 insertions(+), 41 deletions(-) http://git.horde.org/horde-git/-/commit/5e369d250b03912cfce85c43e91324598677ffbd ----------------------------------------------------------------------- commit fc14c3c17a6ec367f3567f294e1d2fd52a1f2597 Author: Jan Schneider <[email protected]> Date: Thu Sep 12 15:21:28 2013 +0200 Already defined in base class. framework/Db/lib/Horde/Db/Adapter/Mysql.php | 6 ------ framework/Db/lib/Horde/Db/Adapter/Mysqli.php | 6 ------ 2 files changed, 0 insertions(+), 12 deletions(-) http://git.horde.org/horde-git/-/commit/fc14c3c17a6ec367f3567f294e1d2fd52a1f2597 ----------------------------------------------------------------------- commit ed92d8a5c5f53ab0449bcfaaa554259f98585d42 Author: Jan Schneider <[email protected]> Date: Thu Sep 12 15:38:10 2013 +0200 [jan] Always return a Horde_Db_Adapter_Base_Result sub-class from the select() method. framework/Db/doc/Horde/Db/UPGRADING | 3 + framework/Db/lib/Horde/Db/Adapter/Base.php | 2 +- framework/Db/lib/Horde/Db/Adapter/Base/Result.php | 247 +++++++++++++++++++ framework/Db/lib/Horde/Db/Adapter/Mysql.php | 2 +- framework/Db/lib/Horde/Db/Adapter/Mysql/Result.php | 211 ++-------------- framework/Db/lib/Horde/Db/Adapter/Mysqli/Result.php | 208 ++-------------- framework/Db/lib/Horde/Db/Adapter/Pdo/Base.php | 4 +- framework/Db/lib/Horde/Db/Adapter/Pdo/Result.php | 54 ++++ framework/Db/package.xml | 15 ++ 9 files changed, 366 insertions(+), 380 deletions(-) create mode 100644 framework/Db/lib/Horde/Db/Adapter/Base/Result.php create mode 100644 framework/Db/lib/Horde/Db/Adapter/Pdo/Result.php http://git.horde.org/horde-git/-/commit/ed92d8a5c5f53ab0449bcfaaa554259f98585d42 ----------------------------------------------------------------------- commit c92f78f4334ed70bfbfb48cd97e0c900233d9453 Author: Jan Schneider <[email protected]> Date: Thu Sep 12 15:39:04 2013 +0200 AVoid strict error. framework/Db/test/Horde/Db/Adapter/MysqlBase.php | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) http://git.horde.org/horde-git/-/commit/c92f78f4334ed70bfbfb48cd97e0c900233d9453 ----------------------------------------------------------------------- commit bc4f4a7a753ebd72e21ab18393a1b9c42bd5a231 Author: Jan Schneider <[email protected]> Date: Thu Sep 12 15:44:18 2013 +0200 execute() won't go completely, just don't use it. framework/Db/doc/Horde/Db/UPGRADING | 4 ++-- framework/Db/lib/Horde/Db/Adapter/Base.php | 3 +-- framework/Db/lib/Horde/Db/Adapter/Mysql.php | 12 ++++++++---- framework/Db/lib/Horde/Db/Adapter/Mysqli.php | 12 ++++++++---- framework/Db/lib/Horde/Db/Adapter/Pdo/Base.php | 2 ++ framework/Db/package.xml | 4 ++-- 6 files changed, 23 insertions(+), 14 deletions(-) http://git.horde.org/horde-git/-/commit/bc4f4a7a753ebd72e21ab18393a1b9c42bd5a231 -- commits mailing list Frequently Asked Questions: http://wiki.horde.org/FAQ To unsubscribe, mail: [email protected]
