How do I insert multiple rows into table calling save() method once in Doctrine?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
Add each record to a
This only works if all the records are for the same table. Otherwise you're out of luck. |
|||||||
|
|
Here another solution ,tested on Doctrine 1.2. No need to save each records, the flush() automatically finds out all the unsaved instances and saves them all.
|
|||||
|
|
I took a look into the code of the "save" method of the Doctrine (1.2.x) "Collection.php" and all I saw is something like this:
How should this ever insert all records with one mysql INSERT? |
|||
