summaryrefslogtreecommitdiffstats
path: root/lib/MDB2
Commit message (Collapse)AuthorAgeFilesLines
* Set the SQLite database lock timeout to 60 seconds which is the default in ↵Frank Karlitschek2013-05-131-1/+1
| | | | PHP anyways. I don't know why the MDB2 driver has this hardcoded to 0.1 seconds. This potentially fixes a lot of SQLite database lock problems and stuck in maintainance mode during upgrade issues.
* Fix raiseError call in the MDB2 sqlite3 driverRobin Appelman2013-04-221-2/+2
|
* Whitespace cleanupBart Visscher2013-01-161-1/+1
|
* Try to fix #836Frank Karlitschek2012-12-121-2/+1
| | | | https://github.com/owncloud/core/issues/836
* Checkstyle: Fix last six NewlineBeforeOpenBraceFelix Moeller2012-11-041-2/+1
|
* Checkstyle: Fix the last 25 NoSpaceAfterCommaFelix Moeller2012-11-041-1/+1
|
* Checkstyle fixes: NoSpaceAfterCommaFelix Moeller2012-11-041-2/+2
|
* Checkstyle: many fixesFelix Moeller2012-11-022-8/+8
|
* NoSpaceAfterComma IIFelix Moeller2012-10-231-1/+1
|
* adding space between) and {Thomas Mueller2012-09-073-16/+16
|
* no more require_once()Thomas Mueller2012-09-054-4/+4
|
* Remove php close at end of fileBart Visscher2012-08-293-5/+0
|
* return standard SQL values (sqlite3 understands CURRENT_...)Jörn Friedrich Dreyer2012-08-271-3/+3
|
* Fix strict standards warningsTom Needham2012-07-201-1/+1
|
* remove superfluous ?> at the end of .php files (left out apps/*/templates)Jörn Friedrich Dreyer2012-07-093-4/+0
|
* strict standards fixes for sqlite3Robin Appelman2012-05-191-5/+5
|
* fix sqlite3 driver against updated MDB2Robin Appelman2012-05-111-1/+1
|
* fix errors during database migrationRobin Appelman2012-01-081-7/+8
|
* fixes in the sqlite manager driverRobin Appelman2012-01-081-23/+49
|
* small fix in sqlite3 driverRobin Appelman2012-01-081-3/+0
|
* some fixes in the sqlite3 driverRobin Appelman2012-01-082-7/+12
|
* change licencing headers for sqlite3 driverRobin Appelman2011-10-226-265/+120
|
* Revert "enhance detection of un-initialized database", conflicted with setup ↵Thomas Schmidt2011-09-301-6/+0
| | | | | | step, needs rework This reverts commit 7fb89c5386fe7f1a1e238853a24d1da556ab9719.
* enhance detection of un-initialized databaseThomas Schmidt2011-09-301-0/+6
|
* Remove global vars and use the OC static version.Bart Visscher2011-09-182-6/+4
| | | | Removed global vars are DOCUMENTROOT, SERVERROOT, SUBURI, WEBROOT and CONFIG_DATADIRECTORY
* Renaming classes :-)Jakob Sack2011-07-292-2/+2
|
* fix sqlite3 driver for php<5.3Robin Appelman2011-06-201-1/+3
|
* only create one connection to a sqlite3 database, fixes 'Database locked' ↵Robin Appelman2011-06-171-0/+8
| | | | errors with webdav
* make use of native sqlite3 prepared statementsRobin Appelman2011-06-141-2/+329
|
* sqlite3 driver for mdb2Robin Appelman2011-06-136-0/+3626
the only problem that I found with it so far is that it gives a database locked error on login, the rest seems to work fine but more testing is required.