dbal icon indicating copy to clipboard operation
dbal copied to clipboard

Doctrine Database Abstraction Layer

Results 249 dbal issues
Sort by recently updated
recently updated
newest added

### Feature Request | Q | A |------------ | ------ | New Feature | yes | RFC | no | BC Break | no #### Summary DBAL does support specification...

Building update statements using table aliases can give you headache when you deal with SQLite ``` $conn->createQueryBuilder() ->update('table', 't') ->set('foo', ':bar') ->where('t.who = :me') ->setParam('bar', 'drunk'); ->setParam('me', 'robertodormepoco'); ``` gives...

Bug
QueryBuilder

This is a post-mortem of an issue I hit yesterday on Packagist. I did a lot of reading of the Doctrine cache code in the process of understanding exactly what...

Cache

Framework: Laravel 5.5 Package version : v2.6.2 PHP: 7.1.8 ## Summary When altering a table by dropping a column, SqlitePlatform is attempting to drop all indexes, and fails when dropping...

Bug
Quoting
Identifiers

I'm not sure how to reproduce this with DBAL directly, but I stumbled upon this problem via the Laravel framework. Original issue reported with Laravel: https://github.com/laravel/framework/issues/22402 I didn't quite find...

Quoting
Identifiers

Jira issue originally created by user jantichy: Hello, I would like to re-open the discussion about automatic transparent escaping of all table/column names sent from DBAL to database. It was...

Improvement
Quoting
Identifiers

Jira issue originally created by user @beberlei: - Make the use of `` a general approach for explicit quoting of identifiers - introduce AbstractPlatform::getRegularSQLIdentifierCase($identifier) - Introduce AbstractPlatform::isRegularIdentifier($identifier) - Fix Schema...

Improvement
Quoting
Identifiers

Jira issue originally created by user josdewitte: Generation of any SQL command to the database (From entities or migration versions) does not quote all the reserved keywords (For example a...

Improvement
Quoting
Identifiers

Jira issue originally created by user frozenfire: https://github.com/doctrine/dbal/blob/master/lib/Doctrine/DBAL/Schema/Comparator.php#L102 The schema comparator currently uses strtolower for all table name comparison, so differences in case will not be detected. When updating a...

Bug
Schema Comparison
Identifiers

Jira issue originally created by user intellix: Postgres: 9.3.5.0 (Postgres App for OSX) w/ PostGIS extensions doctrine/common: 2.4.x-dev ae92d076442e27b6910dd86a1292a8867cf5cfe4 doctrine/dbal: dev-master 1c9c24a7e2295b71249ae2a719ce38861fccd551 creof/doctrine2-spatial: https://github.com/intellix/doctrine2-spatial 4023ca8fbe703043012c31d6df26b9bc7b0a972d ## It seems every now...

Bug
PostgreSQL
Schema Introspection
Foreign Keys