Delphi ADO的事务处理例子


本文整理自网络,侵删。

 
ADO的事务处理例子(Delphi)
ADOConnection1.BeginTrans;   //开始事务
try
with ADOCommand1 do
begin
Connection:=ADOConnection1;
commandtext:='update [country] set [population]=10000 where [name=''Venezuela''';//正确的SQL语句
Execute;
CommandText:='Wrong SQL Command';//错误的SQL Execute;
ADOConnection1.CommitTrans; //提交事务end;
except on E:
Exception do
begin
ADOConnection1.RollbackTrans; //如有异常,事务回滚ShowMessage(E.Message); end end;
end;
――――――――――――――――

原文链接:https://blog.csdn.net/zzflover/article/details/2481093

相关阅读 >>

Delphi2007 读取得unicode文本

Delphi中的copy,delete,pos和leftstr,rightstr的用法

Delphi开发桌面图标列表查看程序

Delphi 程序窗体最大化、组件居中显示代码

Delphi stringtowidestring widestringtostring

ttreeview的两个事件ondragdrop、ondragover 实现自动拖放功能

Delphi实现ftp上传与下载

Delphi d10.x 在android 9及更高版本下使用Delphi获取设备序列号?

Delphi多线程学习:多线程数据库查询(ado)

Delphi idhttp中get 图像链接通过memorystream加载 image控件显示

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...