使用 DB Express 进行异常处理
我正在将我们的应用程序从 BDE 迁移到 Delphi2010 中的 DBexpress。我们正在连接到 Sybase 数据库。
BDE 捕获了存储过程使用 raiseerror 消息引发的异常,但 DBexpress 却没有发生同样的情况。
例如,如果任何验证失败,存储过程包含以下语句
select @msg = "无法执行编辑,因为另一个用户已更改记录"
if @field1 <> @field2 引发错误 20999 @msg 返回 有
没有办法用 DB Express 捕获这个异常。
或者这是 dbexpress 中的一个错误?
谢谢!
I am migrating our application from BDE to DBexpress in Delphi2010.We are connecting to Sybase Database.
The exceptions raised by stored procedure using raiseerror message was getting captured by BDE but the same is not happening with DBexpress.
Eg the stored proc contains the below statement if any validation fails
select @msg = "Could not perform the edit because another user has changed the record "
if @field1 <> @field2
raiserror 20999 @msg
return
end
Is there any way to catch this exception with DB express.
or Is it a bug in dbexpress?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许看看
http://www.delphigroups.info/2/9/753836。 html
Maybe have a look at
http://www.delphigroups.info/2/9/753836.html