如何在 SQL Server 2005 中存储越南语字符?

发布于 2024-08-04 08:11:55 字数 131 浏览 4 评论 0原文

我想将同事的信息添加到我的数据库中以进行测试。由于他来自越南,他的名字里有一个特殊的越南字(“ơ”)。当我更新数据库时,该字符被转换为常规的“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 技术交流群。

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

发布评论

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

评论(4

掩于岁月 2024-08-11 08:11:55

nvarchar 和 nchar

摘要:字符数据类型
固定长度、nchar 或
可变长度、nvarchar、Unicode
数据并使用 UNICODE UCS-2
字符集。

nvarchar and nchar

SUMMARY: Character data types that are
either fixed-length, nchar, or
variable-length, nvarchar, Unicode
data and use the UNICODE UCS-2
character set.

天邊彩虹 2024-08-11 08:11:55

至少,您需要使用 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..;-)

冬天的雪花 2024-08-11 08:11:55

您可能需要使用 NVARCHAR 数据类型?

You may need to use the NVARCHAR Data Type?

情归归情 2024-08-11 08:11:55

我认为最好的方法是让 SQL Server 使用 Unicode 存储信息。

I suppose the best way is to make SQL server store the information using Unicode.

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