From 0e2fa5a6768331f492e279802ddbae75ef60e3fd Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Wed, 18 Mar 2015 13:15:28 +0100 Subject: [PATCH] more hints --- developer_manual/app/changelog.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developer_manual/app/changelog.rst b/developer_manual/app/changelog.rst index 80788bb14..ff6525647 100644 --- a/developer_manual/app/changelog.rst +++ b/developer_manual/app/changelog.rst @@ -31,7 +31,7 @@ This is a deprecation roadmap which lists all current deprecation targets and wi * Replace all calls on the db using **getInsertId** with **lastInsertId** * Replace all calls on the db using **prepareQuery** with **prepare** * The **__construct** method of **OCP\\AppFramework\\Db\\Mapper** no longer requires an instance of **OCP\\IDb** but an instance of **OCP\\IDbConnection** - * The **execute** method on **OCP\\AppFramework\\Db\\Mapper** no longer returns an instance of **OC_DB_StatementWrapper** but an instance of **PDOStatement** + * The **execute** method on **OCP\\AppFramework\\Db\\Mapper** no longer returns an instance of **OC_DB_StatementWrapper** but an instance of **PDOStatement**, so the following methods called on the result will no longer work: **fetchRow**, **fetchOne**, **bindParam**. Simply migrate those to their PDO equivalents. 9.0 ---