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

i save a user like this in doctrine:

$user = User();
$user->name = 'peter';
$user->save();

is there a way to save 20 users in one sql query?

or do i have to loop the above code 20 times hence creating 20 sql queries?

thanks

share|improve this question

2 Answers

up vote 7 down vote accepted

You may add your $user objects to Doctrine_Collection and then call $collection->save(), which basically does the loop for you.

share|improve this answer

From your point of view as a Doctrine user, you are working with objects, and should not be concerned by SQL queries.

If you have 20 different users, then, you should have 20 different objects -- which means, yes, 20 queries (or more, depending on what your objects are doing) to save them.

share|improve this answer

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.