From 4627f38571f02b6e81dadd7f4254f436c07a3fb2 Mon Sep 17 00:00:00 2001 From: Charles Sprayberry Date: Fri, 3 Mar 2023 04:56:05 -0500 Subject: [PATCH] Update supported connection types --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9371699..f9f70fb 100644 --- a/README.md +++ b/README.md @@ -131,12 +131,12 @@ methods that have been provided that allow for the same effective hooks. ## Database Connections -| Connection Instance | Library | Database | Implemented | -|-----------------------------|-----------------------------------|-----------|--------------------| -| `PDO` | [PHP PDO][pdo] | PostgreSQL | :white_check_mark: | -| `PDO` | [PHP PDO][pdo] | MySQL | :x: | -| `Amp\Postgres\PostgresLink` | [amphp/postgres@^2][amp-postgres] | PostgreSQL | :x: | -| `Amp\Mysql\MysqlLink` | [amphp/mysql@^3][amp-mysql] | MySQL | :x: | +| Connection Adapter | Connection Instance | Library | Database | Implemented | +|--------------------------------------------------------|-----------------------------|-----------------------------------|-----------|------------| +| `Cspray\DatabaseTestCase\PdoConnectionAdapter` | `PDO` | [PHP PDO][pdo] | PostgreSQL | :white_check_mark: | +| `Cspray\DatabaseTestCase\PdoConnectionAdapter` | `PDO` | [PHP PDO][pdo] | MySQL | :white_check_mark: | +| `Cspray\DatabaseTestCase\AmpPostgresConnectionAdapter` | `Amp\Postgres\PostgresLink` | [amphp/postgres@^2][amp-postgres] | PostgreSQL | :white_check_mark: | +| | `Amp\Mysql\MysqlLink` | [amphp/mysql@^3][amp-mysql] | MySQL | :x: | [amp-mysql]: https://github.com/amphp/mysql [amp-postgres]: https://github.com/amphp/postgres