O 和 Ö与 Zend_Db 中的 ORDER 相同的字符顺序

发布于 2024-11-01 05:25:01 字数 286 浏览 4 评论 0 原文

当我从数据库中获取对象并运行 Zend 魔法函数时 -> Order (),或作为普通 SQL,例如 title,以及那些包含瑞典语字符 åäö 的内容,因此将它们解释为 aao。它的排序错误,不是 a 就是 o,而实际上它应该放在最后。

有人知道如何解决这个问题吗?看起来像个白痴,却没有任何结果。

编辑:数据库的排序规则为utf8_unicode_ci,编码为u​​tf8。我尝试更改为 utf8_swedish_ci 但没有成功。恐怕我需要保留 utf8 或者我没有任何选择吗?

When I pick up objects from the database and run the Zend magic function -> Order (), or as plain SQL, for example, title, and those containing Swedish characters as åäö so interpreted them as aao. It comes with the wrong sort, either a or o when it really should be ordered last.

Anyone got a clue how to solve this? Have looked like an idiot with no result.

Edit: The collation of the database is utf8_unicode_ci and the encoding is utf8. I have tried to change to utf8_swedish_ci but with no success. And I'm afraid I need to have the utf8 left or do I not any choice there?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自此以后,行同陌路 2024-11-08 05:25:01

您的 MySQL 数据库是否设置为使用正确的排序规则?我认为默认情况下它设置为瑞典语排序规则latin1_swedish_cihttp://dev.mysql.com/doc/refman/5.5/en/charset-we-sets.html

但是如果它被更改为其他内容(例如 latin1< /code>) 它可能会对重音字符进行不同的排序。

这里有关于如何指定特定数据库、列或表使用哪种排序规则的说明:

http://dev.mysql.com/doc/refman/5.0/en/charset-syntax.html

编辑: 瑞典语排序规则就是您想要的:http://www.collat​​ion-charts.org/mysql60/mysql604.latin1_swedish_ci。 html 但您可能使用通用的: http://www .collat​​ion-charts.org/mysql60/mysql604.latin1_general_ci.html

Is your MySQL database set up to use the proper collation? I think by default it's set to the Swedish collation latin1_swedish_ci: http://dev.mysql.com/doc/refman/5.5/en/charset-we-sets.html

But if it's been changed to something else (like latin1) it might order the accented characters differently.

There are instructions on how to specify which collation to use for a particular DB, column, or table here:

http://dev.mysql.com/doc/refman/5.0/en/charset-syntax.html

Edit: The Swedish collation is what you want: http://www.collation-charts.org/mysql60/mysql604.latin1_swedish_ci.html but you are likely using the general one: http://www.collation-charts.org/mysql60/mysql604.latin1_general_ci.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文