Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在付款请求期间,我想将附加信息插入 Magento 数据库。无论主数据库连接的事务结果 如何,我都希望插入这些附加信息。
我相信这样做的唯一方法是创建到数据库的第二个连接,因为 MySQL 不允许嵌套事务。如何在 Magento 中创建第二个数据库连接,或者是否有另一种方法可以解决我的问题?
$table = Mage::getSingleton('core/resource')->getTableName($name); Mage::getSingleton('core/resource')->getConnection('core_write')->insert($table, $array);