cakephp 插入违反唯一约束
在数据库中的电子邮件列上使用 cakephp 我有独特的约束,如何在插入记录之前检查电子邮件可能重复或在插入后检测和打印错误。
using cakephp on email column in the db i have unique constraint, how can check before inserting recording that email may be duplicate or after inserting detect and print error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看核心验证规则。有一个用于
isUnique
。Check out the Core Validation Rules. There's one for
isUnique
.在 http://www.davidtan.org/cakephp-tutorial-how-to-insert-records-into-table-with-unique-index-made-up-of-2-or-more-字段/
Found another good example at http://www.davidtan.org/cakephp-tutorial-how-to-insert-records-into-table-with-unique-index-made-up-of-2-or-more-fields/