S
sxdthonda
Unregistered / Unconfirmed
GUEST, unregistred user!
大家好,小弟初学MIDAS,现在程序初步设计是这样的,在服务器上安装Db2数据库,并在服务器端安装应用服务程序(使用Sqlconnection1+sqldataset(多个)+DataSetProvider(多个)),在客户端使用(SocketConnection+ClientDataSet(多个))。
在程序中需要同时将三个表中的部分数据导入另外三个表中(这个操作要求放入事务中,即要么都成功,要么都不成功)
导入数据语句为:
insert into c_repair select * from repair where no=curno;
insert into c_customer select * from customer where no=curno;
insert into c_work select * from work where no=curno;
请问事务要进行如何处理???
在程序中需要同时将三个表中的部分数据导入另外三个表中(这个操作要求放入事务中,即要么都成功,要么都不成功)
导入数据语句为:
insert into c_repair select * from repair where no=curno;
insert into c_customer select * from customer where no=curno;
insert into c_work select * from work where no=curno;
请问事务要进行如何处理???