module-db icon indicating copy to clipboard operation
module-db copied to clipboard

DB module for Codeception

Results 21 module-db issues
Sort by recently updated
recently updated
newest added

This pull request aims to address compatibility issues with ODBC 18.0. The official changelog can be found here: [ODBC Driver 18.0 for SQL Server Released](https://techcommunity.microsoft.com/t5/sql-server-blog/odbc-driver-18-0-for-sql-server-released/ba-p/3169228). Additionally, I've included documentation to...

Fix https://github.com/Codeception/module-db/issues/52 Fixed local testing in Docker. Added PostgreSQL. Added README.

fix example yaml style.

Allow user to create connection outside of module-db, or even use connection from different module; You could define class `MyDb` with method `getConnection` which will return instance of `\Codeception\Lib\Driver\Db` class...

1. Test rows created with `haveInDatabase` are correctly deleted during tear down if the table has no auto increment at all 2. Uniformise database connection by consistently using `MYSQL_DSN` instead...

fixes #58 when the row to be inserted contains `null` for its primary key column, it's most likely, that it's an auto-increment or otherwise generated primary key, so the $row...

When I have a table with a primary key column that's also increment, it's valid to set it to `null` on the insert statement. the last insert it will then...

Hi, found this little issue, I get an error when insert a row into a table that has NO sequence, one possible use case - it could happen with UUID...

I'm trying to use Docker to run module-db tests locally. Steps to reproduce: ```bash docker compose up -d docker exec -it module-db-php81-1 bash -c "composer install" docker exec -it module-db-php81-1...

I'm using UUID as binary(16) in MySQL tables. My test is failed when I'm trying to test seeInDatabase using UUID as filter criteria. Test failed with error: **[JsonException] Malformed UTF-8...