crate-pdo
crate-pdo copied to clipboard
CrateDB PHP PDO adapter
Hi there, at [^1], the code quality checker reports some deprecation about the `PDOStatement::fetchAll()` function. Is it right? > The function `Crate\PDO\PDOStatement::fetchAll()` has been deprecated: Use `fetchAllNumeric()`, `fetchAllAssociative()` or `fetchFirstColumn()`...
Hi there, users of this library reported about a high number of database connections to CrateDB. They are using it in a high-volume data ingest environment. > There seems to...
Hi again, as a followup to GH-138, users of this library also reported flaws on the aspect of running bulk data imports. > We batch together multiple messages, and then...
With the updates to the PHP PDO interface, `query()` operations using fetch styles/modes are now possible directly on the main PDO object reference. In earlier versions, a PDOStatement was needed...
I'm using Crate with the Laravel Eloquent ORM and I'm having problems PDO::PARAM_STR. For now I replaced ```php throw new Exception\UnsupportedException('This is not supported, please use prepared statements.'); ``` with:...
Updates the requirements on [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) to permit the latest version. Release notes Sourced from phpunit/phpunit's releases. PHPUnit 11.2.9 Fixed #5887: Issue baseline generator does not correctly handle ignoring suppressed issues...
Updates the requirements on [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) to permit the latest version. Release notes Sourced from phpunit/phpunit's releases. PHPUnit 11.3.1 Changed Improved how objects are handled for some assertion failure messages How...
## Problem ``` updater | 2025/04/01 10:37:30 INFO Handled error whilst updating phpstan/phpstan: tool_version_not_supported {:"tool-name"=>"PHP", :"detected-version"=>"7.3", :"supported-versions"=>"^7.4|^8.0"} updater | 2025/04/01 10:37:34 INFO Handled error whilst updating phpunit/phpunit: tool_version_not_supported {:"tool-name"=>"PHP", :"detected-version"=>"7.3",...
> i am using laravel `11.42.1` (latest version) and i am able to connect to crate and get data like this: > > ```php > $connection = app(CrateDB::class)->createConnection(); > $stmt...
## About @JulianMar mentioned at https://github.com/crate/crate-dbal/pull/136#issuecomment-2456671968 that there will be interface changes upcoming, and I observed the same when trying to refresh GH-122. ## References Possibly related. - GH-87 -...