Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | use to_char only for oracle, whitespace | Jörn Friedrich Dreyer | 2013-05-22 | 1 | -6/+6 |
| | |||||
* | add debug output | Jörn Friedrich Dreyer | 2013-05-22 | 1 | -7/+2 |
| | |||||
* | Remove wrong limit parameter from count query in compatibility function | Bart Visscher | 2013-04-06 | 1 | -1/+1 |
| | |||||
* | Change logQuery from define() to OC::Config | Brice Maron | 2013-03-30 | 1 | -2/+2 |
| | |||||
* | Log Queries when we add a log query flag | Brice Maron | 2013-03-30 | 1 | -1/+7 |
| | |||||
* | And removing an irrelevant comment ;) | Thomas Tanghus | 2013-03-26 | 1 | -2/+0 |
| | |||||
* | Double quotes to backticks | Thomas Tanghus | 2013-03-26 | 1 | -4/+4 |
| | |||||
* | Missing backticks. Thx @Raydiation :) | Thomas Tanghus | 2013-03-26 | 1 | -1/+1 |
| | |||||
* | D'oh, why concatenate static strings. | Thomas Tanghus | 2013-03-26 | 1 | -1/+1 |
| | |||||
* | Quote key for SQLite. | Thomas Tanghus | 2013-03-26 | 1 | -1/+1 |
| | |||||
* | Properly prepare insertIfNotExist queries. | Thomas Tanghus | 2013-03-25 | 1 | -12/+15 |
| | |||||
* | enable UTF-8 charset on mssql | Thomas Mueller | 2013-03-12 | 1 | -2/+4 |
| | | | | disable MDB2_PORTABILITY_EMPTY_TO_NULL for mssql to allow insert of empty string to no null fields | ||||
* | Disable query cache for Sqlite | Bart Visscher | 2013-02-27 | 1 | -1/+4 |
| | |||||
* | Disable prepared query caching while doing an upgrade | Robin Appelman | 2013-02-26 | 1 | -2/+13 |
| | |||||
* | Merge branch 'master' into master-sqlserver | Thomas Mueller | 2013-02-18 | 1 | -0/+3 |
|\ | |||||
| * | we should never drop a database | Thomas Mueller | 2013-02-15 | 1 | -0/+3 |
| | | |||||
* | | Merge branch 'master' into master-sqlserver | Thomas Mueller | 2013-02-14 | 1 | -10/+15 |
|\| | | | | | | | | | | | | | | | Conflicts: lib/db.php lib/files/cache/cache.php lib/files/cache/legacy.php lib/setup.php | ||||
| * | Style-fix: Breakup long lines | Bart Visscher | 2013-02-14 | 1 | -4/+8 |
| | | |||||
| * | Whitespace indent fixes | Bart Visscher | 2013-02-14 | 1 | -5/+6 |
| | | |||||
* | | final adoptions for mssql connectivity | Thomas Mueller | 2013-02-14 | 1 | -0/+7 |
| | | |||||
* | | - Fixed indentations. | Administrator | 2013-02-10 | 1 | -77/+77 |
| | | | | | | - Fixed a bug in legacy.php: there was an error that was not checked for if the table 'fscache' did not exist in the database. | ||||
* | | Bugfixes and cleanup MS SQL Server installation | Administrator | 2013-02-10 | 1 | -16/+20 |
| | | |||||
* | | Added MS SQL Server support | Tobias Ramforth | 2013-02-08 | 1 | -3/+177 |
|/ | |||||
* | Merge pull request #1113 from owncloud/fix-issue-1085 | Michael Gapczynski | 2013-01-22 | 1 | -2/+15 |
|\ | | | | | Fix rendering of database connection error page | ||||
| * | Make database connection error messages less verbose | Michael Gapczynski | 2013-01-21 | 1 | -2/+3 |
| | | |||||
| * | returning http status code 503 in case connecting to the database failed | Thomas Mueller | 2013-01-21 | 1 | -0/+8 |
| | | |||||
| * | Move template parameters around so database error page is properly rendered | Michael Gapczynski | 2013-01-07 | 1 | -2/+6 |
| | | |||||
* | | cached queries need to be reset on schema change because they become invalid | Thomas Mueller | 2013-01-20 | 1 | -0/+3 |
| | | | | | | | | fixes: https://github.com/owncloud/apps/issues/468 | ||||
* | | Clear cached prepared statements when switching between mdb2 and pdo | Robin Appelman | 2013-01-16 | 1 | -2/+4 |
| | | |||||
* | | Cache prepared statements in OC_DB | Robin Appelman | 2013-01-15 | 1 | -0/+10 |
|/ | |||||
* | Tweak failure message and throw exceptions from updateDbFromStructure() | Michael Gapczynski | 2013-01-05 | 1 | -4/+6 |
| | |||||
* | Fix "Line indented incorrectly" | Bart Visscher | 2012-12-15 | 1 | -3/+3 |
| | |||||
* | dont handle database exception in OC_DB | Robin Appelman | 2012-12-07 | 1 | -10/+15 |
| | | | | give the caller the option to handle the exception | ||||
* | Merge pull request #556 from owncloud/postgres_insert_id | Thomas Müller | 2012-11-24 | 1 | -5/+12 |
|\ | | | | | use lastval() to get the insert id in postgesql | ||||
| * | use lastval() to get the insert id in postgesql | Robin Appelman | 2012-11-23 | 1 | -5/+12 |
| | | |||||
* | | remove left over tag | Frank Karlitschek | 2012-11-24 | 1 | -1/+1 |
| | | |||||
* | | A new function to create nice error page. And use it for fatal db errors | Frank Karlitschek | 2012-11-24 | 1 | -40/+8 |
| | | |||||
* | | prettier error output. Let´s see how many more low hanging fruits I find on ↵ | Frank Karlitschek | 2012-11-23 | 1 | -9/+38 |
|/ | | | | my way to the real bug that I want to fix ;-) | ||||
* | Change insertIfNotExist() for sqlite. Not fast, but more reliable than ↵ | Thomas Tanghus | 2012-11-12 | 1 | -12/+36 |
| | | | | previous attempt. | ||||
* | Correct SQL syntax. | Thomas Tanghus | 2012-11-12 | 1 | -1/+1 |
| | |||||
* | Merge branch 'master' of github.com:owncloud/core into vcategories_db | Thomas Tanghus | 2012-11-05 | 1 | -2/+2 |
|\ | | | | | | | | | Conflicts: lib/vcategories.php | ||||
| * | Checkstyle fixes: NoSpaceAfterComma | Felix Moeller | 2012-11-04 | 1 | -2/+2 |
| | | |||||
* | | Merge branch 'master' of github.com:owncloud/core into vcategories_db | Thomas Tanghus | 2012-11-04 | 1 | -3/+3 |
|\| | | | | | | | | | Conflicts: lib/vcategories.php | ||||
| * | Checkstyle: many fixes | Felix Moeller | 2012-11-02 | 1 | -3/+3 |
| | | |||||
* | | Remove redundant class wrapping. | Thomas Tanghus | 2012-10-19 | 1 | -1/+0 |
| | | |||||
* | | Use self::prepare() instead of self::$connection->prepare. | Thomas Tanghus | 2012-10-19 | 1 | -1/+1 |
| | | |||||
* | | Return result from OC_DB::insertIfNotExist(). | Thomas Tanghus | 2012-10-19 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'master' of github.com:owncloud/core into vcategories_db | Thomas Tanghus | 2012-10-15 | 1 | -3/+3 |
|\| | |||||
| * | Whitespace cleanup | Bart Visscher | 2012-10-14 | 1 | -2/+2 |
| | | |||||
| * | whitespace fixes | Bart Visscher | 2012-10-12 | 1 | -1/+1 |
| | |