An open API service indexing awesome lists of open source software.

https://github.com/franzose/doctrine-bulk-insert

Bulk insert functionality for the Doctrine/DBAL
https://github.com/franzose/doctrine-bulk-insert

bulk-inserts database dbal doctrine doctrine-dbal doctrine-extension doctrine-migrations doctrine-orm

Last synced: 3 months ago
JSON representation

Bulk insert functionality for the Doctrine/DBAL

Awesome Lists containing this project

README

        

# Doctrine/DBAL Bulk Insert
The library is based on the [gist](https://gist.github.com/gskema/a182aaf7cc04001aebba9c1aad86b40b) and provides bulk insert functionality to the [Doctrine/DBAL](https://github.com/doctrine/dbal).

## Usage

```php
execute('foo', [
['foo' => 111, 'bar' => 222],
['foo' => 333, 'bar' => 444],
]);
```