如何在 SQL Server 2005 中存储越南语字符?
我想将同事的信息添加到我的数据库中以进行测试。由于他来自越南,他的名字里有一个特殊的越南字(“ơ”)。当我更新数据库时,该字符被转换为常规的“o”...
我如何在 SQL Server Express 2005 中存储这种特殊字符?
I wanted to add my colleague's information in my database for testing purposes. Since he his from Vietnam, his name has a special Vietnamese character in it ('ơ'). When I updated the database, the character was transformed to a regular 'o'...
How can I store that kind of special character inside SQL Server Express 2005?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
nvarchar 和 nchar
nvarchar and nchar
至少,您需要使用 nchar 或 nvarchar 数据类型,以及支持 unicode 的客户端(例如 Java 或任何 .NET 语言)。
然后,我希望它能正常工作..;-)
At the very least, you'll need to use the nchar or nvarchar data type, and a client that supports unicode (such as Java or any .NET language).
Then, I'd expect it to just work..;-)
您可能需要使用 NVARCHAR 数据类型?
You may need to use the NVARCHAR Data Type?
我认为最好的方法是让 SQL Server 使用 Unicode 存储信息。
I suppose the best way is to make SQL server store the information using Unicode.