dbal icon indicating copy to clipboard operation
dbal copied to clipboard

Doctrine Database Abstraction Layer

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

### Bug Report | Q | A |-------------------------------------------- | ------ | Version | x.y.z | Previous Version if the bug is a regression | x.y.z #### Summary Originally discovered while...

### Feature Request #### What 1. Remove `@internal` on methods in `Doctrine\DBAL\Connection` that could be reused in `wrapper_class` 2. Add the possibility to increment the `transactionNestingLevel` in a class that...

At a high level, [implicit indexes](https://www.doctrine-project.org/projects/doctrine-dbal/en/4.2/explanation/implicit-indexes.html) have two purposes: 1. Create the indexes that the target database platform will require for a certain database schema (DBAL-defined indexes). 2. Account for...

Schema Management
Schema Comparison
Indexes

### Bug Report | Q | A |-------------------------------------------- | ------ | Version | 4.2.1 #### Summary I think it's a minor bug and I don't know if it's the right...

Named PK constraints is a pretty universally supported thing. I think DBAL 3 should support naming a PK. This would make interop a little easier on shared environments. See #807

Improvement
Platforms
Schema Management
Schema
Schema Comparison
Schema Introspection
Schema Definition
Primary Keys

Hello, I had to fix [this deprecation](https://github.com/doctrine/dbal/commit/d8ffc837bf5d43aade9f41b1b83a3758836d7eec), and honestly, I'm not really happy with the result. --- My use case is the following: I have some special columns in my...

### Feature Request #### What On many RDBMS, it's possible to specify if the transaction is read only or not (READ WRITE). By default, a transaction is READ WRITE. When...

### Feature Request #### What Implementation of nowait locking for select queries. Example for postgresql - `select * from document where id='123' for update nowait;` #### Why Don't see other...

### Bug Report | Q | A |-------------------------------------------- | ------ | Version | 4.2.2 pdo_mysql driver #### Summary Positional parameter at index 0 does not have a bound value error...

SQL Parser

#### Summary Hello, In previous versions (dbal < 4) I used "Doctrine\DBAL\Driver\OCI8\bindParam" to assign inputs and outputs on an Oracle procedure and it worked fine! But since version 4, the...