用Delphi模拟组件的两阶段提交

2008-02-23 07:20:34来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

1 2 3 4 5 6 7 8 9 下一页

问题提出:写了一个数据库操作的类TDBOperate_DL,统一对数据库的操作嘛。提供了声明事务开始、提交事务和回滚事务的方法供其他类调用。

TDBOperate_DL = class

private

ADOC:TADOConnection;

ADOQ:TADOQuery;

isDestroyADOC:Boolean; //是否销毁自己的ADOC?

fIsInTrans:Boolean; //是否已经开始事务

public

isCommit:Boolean; //是否要提交事务,缺省是真,如果有类投票说反对提交,就为假

function IsInTrans:Boolean;

constructor Create(const newADOC:TADOConnection);overload;

constructor Create(const ServerName,DataBaseName,UserID,Password:String);overload;

destructor Destroy;override;

procedure BeginTrans;

procedure CommitTrans;

procedure RollbackTrans;

procedure Execute(const sqlString:String);

function GetDataset(const sqlString:String):_Recordset;

function GetConnection:TADOConnection;

1 2 3 4 5 6 7 8 9 下一页

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:开发基于DCOM的局域网聊天室(二)

下一篇:Delphi中如何实现透明按钮