Perl DBI - 捕获错误
在 Perl 中捕获 DBI 错误的最佳方法是什么?例如,如果由于插入的值中存在非法字符而导致插入失败,我怎样才能不让脚本失败,而是捕获错误并适当处理它。
我不想做“或者死”,因为我不想停止脚本的执行。
What's the best way of capturing any DBI errors in Perl? For example if an insert fails because there were illegal characters in the values being inserted, how can I not have the script fail, but capture the error and handle it appropriately.
I don't want to do the "or die" because I don't want to stop execution of the script.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
DBI->connect
中的RaiseError=>1
配置,并将调用包装到$dbh
和$sth
在 try 块中(TryCatch 和 Try::Tiny 是 try 块的良好实现。有关其他可用连接变量的详细信息,请参阅文档。
例如:
Use the
RaiseError=>1
configuration inDBI->connect
, and wrap your calls to the$dbh
and$sth
in a try block (TryCatch and Try::Tiny are good implementations for try blocks).See the docs for more information on other connect variables available.
for example:
你还可以执行以下操作,这将使你死掉,或者优雅地处理错误并继续。
you can also do the following, which will allow you to die, or gracefully handle the errors and continue.