使用 DB Express 进行异常处理

发布于 2024-10-19 22:16:39 字数 350 浏览 1 评论 0原文

我正在将我们的应用程序从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文