- 17 Jun, 2020 2 commits
-
-
Michael Moravec authored
-
Sergei Morozov authored
-
- 13 Jun, 2020 1 commit
-
-
Sergei Morozov authored
-
- 09 Jun, 2020 1 commit
-
-
Sergei Morozov authored
-
- 27 May, 2020 3 commits
-
-
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
-
- 13 Apr, 2020 1 commit
-
-
Sergei Morozov authored
1. `FetchMode::STANDARD_OBJECT` and `FetchMode::CUSTOM_OBJECT` are no longer supported. 2. `FetchMode::COLUMN` with a non-zero index is no longer supported. 3. Incompatible change in the `Connection::fetchColumn()` signature where the 3rd argument is now `$types`, not `$columnIndex`.
-
- 08 Apr, 2020 2 commits
-
-
Sergei Morozov authored
-
Sergei Morozov authored
-
- 21 Mar, 2020 1 commit
-
-
Sergei Morozov authored
-
- 30 Dec, 2019 3 commits
-
-
Sergei Morozov authored
-
Sergei Morozov authored
-
Sergei Morozov authored
-
- 31 Oct, 2019 1 commit
-
-
Sergei Morozov authored
-
- 14 Oct, 2019 1 commit
-
-
Konstantin Kalinin authored
When the connection is lost or is closed, subsequent transaction will no longer be nested because they started in a brand new session. Our internal representation of the nesting shold take this into account
-
- 26 Jun, 2019 1 commit
-
-
Andrej Hudec authored
-
- 22 May, 2019 1 commit
-
-
Sergei Morozov authored
-
- 17 Apr, 2019 1 commit
-
-
Jonathan H. Wage authored
using params in query cache key generation.
-
- 17 Mar, 2019 1 commit
-
-
Ahmed Abdou authored
-
- 03 Feb, 2019 1 commit
-
-
Sergei Morozov authored
-
- 29 Jan, 2019 1 commit
-
-
Sergei Morozov authored
-
- 22 Jan, 2019 1 commit
-
-
Sergei Morozov authored
-
- 20 Jan, 2019 1 commit
-
-
Sergei Morozov authored
-
- 07 Oct, 2018 1 commit
-
-
Sergei Morozov authored
-
- 02 Oct, 2018 4 commits
-
-
Sergei Morozov authored
-
Sergei Morozov authored
-
Sergei Morozov authored
-
Sergei Morozov authored
-
- 27 Jun, 2018 1 commit
-
-
Michael Moravec authored
-
- 01 Apr, 2018 1 commit
-
-
Michael Moravec authored
-
- 29 Jan, 2018 5 commits
-
-
Sergei Morozov authored
-
Sergei Morozov authored
Expressed PARAM_*_ARRAY through other constants to eliminate the dependency on the actual constant values
-
Sergei Morozov authored
-
Michael Moravec authored
-
Gabriel Caruso authored
-
- 03 Jan, 2018 1 commit
-
-
Gabriel Caruso authored
-
- 07 Dec, 2017 1 commit
-
-
Gabriel Caruso authored
-
- 14 Sep, 2017 2 commits
-
-
Ian Jenkins authored
statements in a rewindable iterator. Skipped the test for iterating multiple times with a message regarding that iterators are non rewindable.
-
Ian Jenkins authored
-