- 29 May, 2020 1 commit
-
-
Sergei Morozov authored
-
- 28 May, 2020 2 commits
-
-
Sergei Morozov authored
Moved rowCount() from Statement to ResultStatement
-
Sergei Morozov authored
-
- 27 May, 2020 7 commits
-
-
Sergei Morozov authored
Replace the concept of statement fetch modes with the explicit API
-
Sergei Morozov authored
-
Sergei Morozov authored
-
Grégoire Paris authored
Backport removal of some deprecated APIs
-
Sergei Morozov authored
-
Sergei Morozov authored
The methods has more limitations and caveats than provides real use: 1. It fetches all data in memory which is often inefficient (see #2718). 2. It fetches rows in memory one by one instead of using `fetchAll()`. 4. It doesn't allow to specify the statement fetch mode since it's instantiated internally. 5. It can be easily replaced with: ```php foreach ($conn->executeQuery($query, $params, $types) as $value) { yield $function($value); } ```
-
Sergei Morozov authored
-
- 26 May, 2020 4 commits
-
-
Sergei Morozov authored
-
Grégoire Paris authored
Allow php 8
-
Grégoire Paris authored
-
Sergei Morozov authored
Deprecated the concept of the fetch mode
-
- 25 May, 2020 2 commits
-
-
Sergei Morozov authored
-
Sergei Morozov authored
-
- 24 May, 2020 2 commits
-
-
Grégoire Paris authored
-
Grégoire Paris authored
-
- 23 May, 2020 3 commits
-
-
Sergei Morozov authored
-
Sergei Morozov authored
Deprecated Connection::project(), Statement::errorCode() and errorInfo()
-
Sergei Morozov authored
-
- 21 May, 2020 2 commits
-
-
Gabriel Ostrolucký authored
-
Gabriel Ostrolucký authored
This makes it consistent with doctrine-bundle command
-
- 18 May, 2020 4 commits
-
-
Claudio Zizza authored
Fix character for mysql driver example
-
Grégoire Paris authored
Coveralls integration
-
Grégoire Paris authored
-
Grégoire Paris authored
-
- 16 May, 2020 1 commit
-
-
Grégoire Paris authored
-
- 15 May, 2020 2 commits
-
-
Sergei Morozov authored
Remove useless rules
-
Alex Pavlov authored
For UTF-8: SQLSTATE[HY000] [2019] Unknown character set
-
- 13 May, 2020 1 commit
-
-
Sergei Morozov authored
allow using multiple connections for CLI commands
-
- 12 May, 2020 3 commits
-
-
David Maicher authored
-
Sergei Morozov authored
Fix logging in functional tests in case of connection failure
-
Sergei Morozov authored
-
- 09 May, 2020 1 commit
-
-
Grégoire Paris authored
Extend RetryableException from Throwable interface
-
- 08 May, 2020 4 commits
-
-
Michael Telgmann authored
Let RetryableException extend from the Throwable interface to prevent errors in Psalm if catching it
-
Grégoire Paris authored
We are calling them in uppercase since 64939c35
-
Grégoire Paris authored
This exclude rule is here because of a false positive that has been fixed since slevomat/coding-standard 6.1.2
-
Grégoire Paris authored
-
- 07 May, 2020 1 commit
-
-
Grégoire Paris authored
-