summaryrefslogtreecommitdiffstats
path: root/lib/private/db.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-07-29 18:19:31 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2015-07-29 18:19:31 +0200
commit5ed38a75d64c06d923a580175f6ab732234694a1 (patch)
tree07fbe359a6c3dbfd7bc587d4a06020be1169df96 /lib/private/db.php
parent3ef680d96623eb6350015843f56b55b593a053bd (diff)
downloadnextcloud-server-5ed38a75d64c06d923a580175f6ab732234694a1.tar.gz
nextcloud-server-5ed38a75d64c06d923a580175f6ab732234694a1.zip
Remove remainings of mssql
Diffstat (limited to 'lib/private/db.php')
-rw-r--r--lib/private/db.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/db.php b/lib/private/db.php
index 1e93eb1892e..a4a7b7d17d4 100644
--- a/lib/private/db.php
+++ b/lib/private/db.php
@@ -121,7 +121,7 @@ class OC_DB {
if (is_string($stmt)) {
// convert to an array with 'sql'
if (stripos($stmt, 'LIMIT') !== false) { //OFFSET requires LIMIT, so we only need to check for LIMIT
- // TODO try to convert LIMIT OFFSET notation to parameters, see fixLimitClauseForMSSQL
+ // TODO try to convert LIMIT OFFSET notation to parameters
$message = 'LIMIT and OFFSET are forbidden for portability reasons,'
. ' pass an array with \'limit\' and \'offset\' instead';
throw new \OC\DatabaseException($message);