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
- Host: GitHub
- URL: https://github.com/franzose/doctrine-bulk-insert
- Owner: franzose
- License: mit
- Created: 2019-04-07T06:03:39.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-08-11T08:38:30.000Z (9 months ago)
- Last Synced: 2025-02-05T08:07:14.104Z (4 months ago)
- Topics: bulk-inserts, database, dbal, doctrine, doctrine-dbal, doctrine-extension, doctrine-migrations, doctrine-orm
- Language: PHP
- Homepage:
- Size: 43 KB
- Stars: 18
- Watchers: 3
- Forks: 9
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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],
]);
```