aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db/driver/sqlite3.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/12624] Add debug.load_time parameterJakub Senko2019-05-091-2/+2
| | | | PHPBB3-12624
* [ticket/12627] Add debug.sql_explain parameterJakub Senko2019-05-091-4/+3
| | | | PHPBB3-12627
* [ticket/14044] Automatically trigger rollback on insert in transactionMarc Alexander2015-10-231-2/+8
| | | | | | | | | | | | | | | This will cause the sqlite3 driver to automatically rollback transactions if an insert fails during a transaction. Other dbms trigger a rollback inside the sql_error() function with a rollback command. However, this manual rollback command might fail on sqlite3 due to ongoing queries. With this change, sqlite3 itself will abort any ongoing queries and initiate the rollback automatically. Since manually triggered rollbacks will fail after the rollback was started automatically, we catch exceptions output by the exec() command during rollback and any exception that might be thrown by fetchArray() due to aborted queries. PHPBB3-14044
* [ticket/14044] Fix Sqlite error in testsMarc Alexander2015-10-231-1/+13
| | | | PHPBB3-14044
* Merge branch '3.1.x'Tristan Darricau2015-09-091-0/+1
|\ | | | | | | | | * 3.1.x: [ticket/13423] Set busyTimeout on connect to prevent db locking
| * [ticket/13423] Set busyTimeout on connect to prevent db lockingMarc Alexander2015-09-071-0/+1
| | | | | | | | PHPBB3-13423
* | Merge branch 'develop-ascraeus' into developJoas Schilling2014-08-101-2/+19
|\ \ | |/ | | | | | | | | | | | | | | * develop-ascraeus: [ticket/12671] Possibility to use NOT LIKE expression [ticket/12671] Possibility to use NOT LIKE expression [ticket/12671] Possibility to use NOT LIKE expression [ticket/12671] Possibility to use NOT LIKE expression [ticket/12671] Possibility to use NOT LIKE expression
| * [ticket/12671] Possibility to use NOT LIKE expressionGeolim42014-08-091-4/+4
| | | | | | | | PHPBB3-12671
| * [ticket/12671] Possibility to use NOT LIKE expressionGeolim42014-08-091-2/+2
| | | | | | | | PHPBB3-12671
| * [ticket/12671] Possibility to use NOT LIKE expressionGeolim42014-08-081-0/+17
| | | | | | | | PHPBB3-12671
* | Merge pull request #2637 from Nicofuma/ticket/12387Joas Schilling2014-08-071-2/+10
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | [ticket/12387] Cleanup *_free_result call and remove @ on that call * Nicofuma/ticket/12387: [ticket/12387] Fix a call to sql_freeresult in full_text_native [ticket/12387] Fix \phpbb\db\driver\mysqli::sql_freeresult [ticket/12387] Use the hash as query_id for caching [ticket/12387] Remove unnecessary checks [ticket/12387] mssql_query return true if a select query returns 0 row [ticket/12387] Cleanup *_free_result call and remove @ on that call
| * [ticket/12387] Cleanup *_free_result call and remove @ on that callTristan Darricau2014-06-221-3/+11
| | | | | | | | PHPBB3-12387
* | Merge pull request #2690 from Noxwizard/ticket/12802Tristan Darricau2014-07-071-3/+4
|\ \ | | | | | | | | | | | | | | | | | | [ticket/12802] Properly handle connection failures in SQLite3 * Noxwizard/ticket/12802: [ticket/12802] Properly handle connection failures in SQLite3
| * | [ticket/12802] Properly handle connection failures in SQLite3Patrick Webster2014-07-031-3/+4
| |/ | | | | | | PHPBB3-12802
* | [ticket/12704] Improve the load time information in the footer when enabledrxu2014-06-201-0/+8
|/ | | | | | | | | PR #2570 has added new constant to display load time information without debug mode is being on (https://tracker.phpbb.com/browse/PHPBB3-12687). This patch expands the total load time info with SQL/PHP load times, while hiding the additional info with <abbr> element. PHPBB3-12704
* [ticket/12594] Remove @package tags and update file headersYuriy Rusko2014-05-271-4/+7
| | | | PHPBB3-12594
* [feature/sqlite3] Update docblocks and function visibilityPatrick Webster2014-05-021-23/+48
| | | | | | Added missing docblock annotations and added visibility identifiers. PHPBB3-9728
* [feature/sqlite3] Add support for SQLite 3Patrick Webster2014-05-021-0/+350
Minimum version requirement is 3.6.15 as that's what ships with PHP 5.3.0 when support for SQLite 3 was added. PHPBB3-9728