Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I insert multiple rows into table calling save() method once in Doctrine?

share|improve this question

3 Answers

up vote 22 down vote accepted

Add each record to a Doctrine_Collection the call save() on the collection object.

$collection = new Doctrine_Collection('tablename');
$collection->add($record1);
$collection->add($record2);
$collection->add($record3);
$collection->add($record4);
$collection->save();

This only works if all the records are for the same table. Otherwise you're out of luck.

share|improve this answer
Thank you, exact what I was looking for. – Almas Adilbek Mar 24 '11 at 10:55
9  
This is perfect! Inserting 1000 rows took only 3.8s instead of 76s!! – Populus Jun 7 '11 at 9:09

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.

$row = new \My_Doctrine_Record();
$row->name = 'aaa';
$row->approved = 1;

/// ...

$row = new \My_Doctrine_Record();
$row->name = 'val';
$row->approved = 'bbb';

Doctrine_Manager::connection()->flush();
share|improve this answer
I'm confused. You say there is no need to instantiate new records, but that's exactly what you are doing in your code when you repeatedly say $row = new My_Doctrine_Record();, right? – Jakobud Aug 8 '11 at 19:37
ops, I meant "no need to save each record". I'll change it – Elvis Ciotti Aug 25 '11 at 9:27

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:

foreach ($this->getData() as $key => $record) {
   $record->save($conn);
}

How should this ever insert all records with one mysql INSERT?

share|improve this answer
Your excerpt in Collection.php is wrapped by $conn->beginInternalTransaction() and $conn->commit(). That might explain it. – Tapper Oct 25 '12 at 18:55
1  
Thanks for your comment, but for example: MySQL MyISAM doesn't support transactions... – Del Pedro Oct 26 '12 at 8:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.