事务处理

优质
小牛编辑
144浏览
2023-12-01

启动事务

$this->db->start();
Swoole::$php->db('slave2')->start();

提交事务

$this->db->commit();
Swoole::$php->db('slave2')->commit();

回滚事务

$this->db->rollback();
Swoole::$php->db('slave2')->rollback();