MySQL 5 中的 utf8 数据需要哪个 dbExpress ServerCharSet?
根据新闻组中找到的信息,我们尝试了 ServerCharSet=utf8
和 ServerCharSet=UTF8
- 但特殊字符/变音符号仍然无法正确显示在客户端数据中。
我们使用Delphi 2009和内置的dbExpress驱动程序。使用 AsWideString 检索字段数据。
We tried ServerCharSet=utf8
and ServerCharSet=UTF8
, based on information found in newsgroups - but still, special characters / Umlauts do not appear correctly in the client data.
We use Delphi 2009 and the built-in dbExpress driver. Field data is retrieved using AsWideString.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须设置客户端字符集。
简单的“
SET NAMES utf8
”查询,在连接后立即执行,就可以解决问题you have to set up a client charset.
Simple "
SET NAMES utf8
" query, executed right after connect, will do the trick