开发者社区> 问答> 正文

Mysql事务里面的程序

在mysql过程中,我希望一个事务是非自动提交的,而另一个则没有自动提交。

基本上它在过程事务内部创建了一个不同的事务块。

Create procedure sampleProc() 
Begin    

call procedure abc()       // this to commit only when all is committed

insert into timetaken(some time);  //this to reflect immediately in DB.

call procedure abc()

insert into timetaken(some time);

...
these both can repeat n times

end;

展开
收起
垚tutu 2019-11-28 19:06:51 589 0
0 条回答
写回答
取消 提交回答
问答排行榜
最热
最新

相关电子书

更多
搭建电商项目架构连接MySQL 立即下载
搭建4层电商项目架构,实战连接MySQL 立即下载
PolarDB MySQL引擎重磅功能及产品能力盛大发布 立即下载

相关镜像