diff options
author | Joas Schilling <coding@schilljs.com> | 2020-11-06 10:37:37 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2020-11-06 10:37:37 +0100 |
commit | a847aea19ce675b0b45a3a0753e957a20b6faabd (patch) | |
tree | b26a9fed35c09f2da0787ed21329831a78eebffb /lib/private/legacy | |
parent | 2c6bbe783a6ab0f75f9ad85d66d9b4511a7543be (diff) | |
download | nextcloud-server-a847aea19ce675b0b45a3a0753e957a20b6faabd.tar.gz nextcloud-server-a847aea19ce675b0b45a3a0753e957a20b6faabd.zip |
Deprecate OC_DB::prepare and OC_DB::executeAudited as they leak cursors
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/legacy')
-rw-r--r-- | lib/private/legacy/OC_DB.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/private/legacy/OC_DB.php b/lib/private/legacy/OC_DB.php index 50dab74abb9..b12ecd11100 100644 --- a/lib/private/legacy/OC_DB.php +++ b/lib/private/legacy/OC_DB.php @@ -55,6 +55,7 @@ class OC_DB { * @param bool|null $isManipulation * @throws \OC\DatabaseException * @return OC_DB_StatementWrapper prepared SQL query + * @depreacted 21.0.0 Please use \OCP\IDBConnection::getQueryBuilder() instead * * SQL query via Doctrine prepare(), needs to be execute()'d! */ @@ -112,6 +113,7 @@ class OC_DB { * @param array $parameters * @return OC_DB_StatementWrapper * @throws \OC\DatabaseException + * @depreacted 21.0.0 Please use \OCP\IDBConnection::getQueryBuilder() instead */ public static function executeAudited($stmt, array $parameters = []) { if (is_string($stmt)) { |