Mysql_insert_id 与 Doctrine

发布于 2024-08-27 01:25:16 字数 452 浏览 6 评论 0原文

我有几个表(mySQL),我想在 Doctrine 的帮助下更新它们。产品表 id 是自动递增的,这里是我想要做的事情的简要描述:

    $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 usinglush?使用常规保存是一种替代方法,但这样做时会出现多个事务。 我试图找到一个 Mysql_insert_id 版本的学说,但没有任何运气。

谢谢!

I have a couple of tables (mySQL) that i would like to update with the help of Doctrine. The products table id is auto-incrementing, and here's a brief description on what I would like to do:

    $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.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文