$conn = Doctrine_Manager::connection();
$user1 = new User();
$user1->username = 'Jack';
$user2 = new User();
$user2->username = 'jwage';
$conn->flush();
导致执行2个插入查询。
有没有办法只用一个批量插入来做到这一点?
我认为学说2正在解决这个问题(http://www.doctrine-project.org/blog/doctrine2-batch-processing),但它仍处于测试阶段。
有什么想法吗?
答案 0 :(得分:6)
这篇文章解释了如何使用Michelangelo建议的收藏集:Doctrine - insert multiple rows with just one save()
答案 1 :(得分:-1)
v1中没有此功能,只有v2。