Ben Doktrini yardımı ile güncellemek istiyorum birkaç tablo (mySQL) var. Ürünleri tablo id otomatik artan bir olduğunu ve burada ben yapmak istiyorum ne kısa bir açıklama bulunuyor:
$prod = new Products();
$prod->type = '0';
$categ = new CategoriesToProducts();
$categ->cat = '111';
$categ->product = $prod->id;
$conn = Doctrine_Manager::connection();
$conn->flush();
How can I do this while using flush? Using a regular save is an alternative, but there will be multiple transactions while doing such. I have tried to find a Mysql_insert_id version for doctrine, but without any luck.
Teşekkürler!