cakephp :操作 '=' 的排序规则 (tis620_thai_ci,IMPLICIT) 和 (latin1_swedish_ci,COERCIBLE) 的非法组合
时,我得到了
SQL Error: 1267: Illegal mix of collations (tis620_thai_ci,IMPLICIT) and (latin1_swedish_ci,COERCIBLE) for operation '='
当我插入非英语以形成
如何解决或隐藏问题 感谢您的任何建议
i got
SQL Error: 1267: Illegal mix of collations (tis620_thai_ci,IMPLICIT) and (latin1_swedish_ci,COERCIBLE) for operation '='
when i insert non english to form
how to fix or hide the problem
Thank you for any advice
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您收到错误是因为您将 Mysql 中的排序规则设置为 latin1。您需要将表(以及可能的字段)的排序规则修改为 tis620,这应该可以解决问题。
You're receiving the error because you have the collation in your Mysql set to latin1. You'll need to modify the collation of your tables (and possibly fields) to be tis620 and that should resolve the problem.