如何在 MySQL 中声明 Widechar 数据类型

发布于 2024-10-31 01:03:52 字数 184 浏览 1 评论 0原文

当我阅读 C++ 手册时,它描述了 wchar_t

wchar_t 宽字符 - 2 或 4 个字节 1 个宽字符

这让我思考如何在 MySQL 中存储 wchart_t 类数据(如汉字)?

When I reading a C++ manual, it describe wchar_t as this,

wchar_t Wide character - 2 or 4 bytes
1 wide character

It let me think about how to store wchart_t kind of data(Like Chinese character) in MySQL?

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

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

发布评论

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

评论(1

枕头说它不想醒 2024-11-07 01:03:52

wchar_t 不知道字符编码。 wchar_t 甚至可能(理论上)是 1 或 8 个字节。 MySQL 知道字符编码。因此,不存在适合所有目的的答案。确保 MySQL 和 C++ 代码中的编码相同。

wchar_t is not aware of character encoding. A wchar_t might (theoretically) even be 1 or 8 bytes. MySQL is aware of character encoding. So there is no answer that fits all purposes. Make sure that the encoding is the same in MySQL and in the C++ code.

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