summaryrefslogtreecommitdiffstats
path: root/lib/private/db
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2015-03-16 15:41:00 +0100
committerJoas Schilling <nickvergessen@owncloud.com>2015-03-16 15:41:00 +0100
commitc2a5bd6a01be635f3d1c59f624cda337f05c4237 (patch)
tree9da3b19622ddb5ed202d7d67f88ea3af34efbcd0 /lib/private/db
parent06b2446269f16035444eea1335e13b355a48e442 (diff)
downloadnextcloud-server-c2a5bd6a01be635f3d1c59f624cda337f05c4237.tar.gz
nextcloud-server-c2a5bd6a01be635f3d1c59f624cda337f05c4237.zip
Also add a note that clob does not work in the compare array
Diffstat (limited to 'lib/private/db')
-rw-r--r--lib/private/db/adapter.php1
-rw-r--r--lib/private/db/adaptersqlite.php1
-rw-r--r--lib/private/db/connection.php1
3 files changed, 3 insertions, 0 deletions
diff --git a/lib/private/db/adapter.php b/lib/private/db/adapter.php
index de7b04c74db..8c251c82075 100644
--- a/lib/private/db/adapter.php
+++ b/lib/private/db/adapter.php
@@ -46,6 +46,7 @@ class Adapter {
* @param array $input data that should be inserted into the table (column name => value)
* @param array|null $compare List of values that should be checked for "if not exists"
* If this is null or an empty array, all keys of $input will be compared
+ * Please note: text fields (clob) must not be used in the compare array
* @return int number of inserted rows
* @throws \Doctrine\DBAL\DBALException
*/
diff --git a/lib/private/db/adaptersqlite.php b/lib/private/db/adaptersqlite.php
index 31f88940f0b..a9106967333 100644
--- a/lib/private/db/adaptersqlite.php
+++ b/lib/private/db/adaptersqlite.php
@@ -25,6 +25,7 @@ class AdapterSqlite extends Adapter {
* @param array $input data that should be inserted into the table (column name => value)
* @param array|null $compare List of values that should be checked for "if not exists"
* If this is null or an empty array, all keys of $input will be compared
+ * Please note: text fields (clob) must not be used in the compare array
* @return int number of inserted rows
* @throws \Doctrine\DBAL\DBALException
*/
diff --git a/lib/private/db/connection.php b/lib/private/db/connection.php
index 023e265f242..8748f66b369 100644
--- a/lib/private/db/connection.php
+++ b/lib/private/db/connection.php
@@ -163,6 +163,7 @@ class Connection extends \Doctrine\DBAL\Connection implements IDBConnection {
* @param array $input data that should be inserted into the table (column name => value)
* @param array|null $compare List of values that should be checked for "if not exists"
* If this is null or an empty array, all keys of $input will be compared
+ * Please note: text fields (clob) must not be used in the compare array
* @return int number of inserted rows
* @throws \Doctrine\DBAL\DBALException
*/