diff options
author | Thomas Schmidt <tschmidt@suse.de> | 2011-09-30 14:40:17 +0200 |
---|---|---|
committer | Thomas Schmidt <tschmidt@suse.de> | 2011-09-30 14:40:17 +0200 |
commit | 7fb89c5386fe7f1a1e238853a24d1da556ab9719 (patch) | |
tree | 60a2222842c490760174a412bc356a13d56ba5d6 /lib/MDB2/Driver | |
parent | 51e68729de3402fd7bc90e123c432538659b6b31 (diff) | |
download | nextcloud-server-7fb89c5386fe7f1a1e238853a24d1da556ab9719.tar.gz nextcloud-server-7fb89c5386fe7f1a1e238853a24d1da556ab9719.zip |
enhance detection of un-initialized database
Diffstat (limited to 'lib/MDB2/Driver')
-rw-r--r-- | lib/MDB2/Driver/sqlite3.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/MDB2/Driver/sqlite3.php b/lib/MDB2/Driver/sqlite3.php index a41aeed4850..967e3335b13 100644 --- a/lib/MDB2/Driver/sqlite3.php +++ b/lib/MDB2/Driver/sqlite3.php @@ -582,6 +582,12 @@ class MDB2_Driver_sqlite3 extends MDB2_Driver_Common return $query; } + /* Dummy interface for sqlite, to stay compatible with the database abstraction */ + function getUserInfo() { + return "sqlite standard user"; + } + + // }}} // {{{ getServerVersion() |