如何在 MySQL 中声明 Widechar 数据类型
当我阅读 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
wchar_t
不知道字符编码。wchar_t
甚至可能(理论上)是 1 或 8 个字节。 MySQL 知道字符编码。因此,不存在适合所有目的的答案。确保 MySQL 和 C++ 代码中的编码相同。wchar_t
is not aware of character encoding. Awchar_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.