如何判断rails中的SQL事务是否成功?
我想知道如何判断 sql 事务在 Rails 中是否成功,它是否返回 true 或类似的内容。或者代码只是失败时出错?
I was wondering how you tell if an sql transaction was successful in rails, does it return true or something like that. Or does the code just error on fail?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当事务失败时,Activerecord 将抛出
ActiveRecord::Rollback
异常。请参阅http://api.rubyonrails.org/classes/ActiveRecord/Transactions/ClassMethods。 html 和 http://api.rubyonrails.org/classes/ActiveRecord/Rollback.html 了解更多信息。Activerecord will throw
ActiveRecord::Rollback
exception when a transaction will fail. See http://api.rubyonrails.org/classes/ActiveRecord/Transactions/ClassMethods.html and http://api.rubyonrails.org/classes/ActiveRecord/Rollback.html for more information.