多语言应用程序中的数据类型约束。 SQL Server 2008

发布于 2024-12-04 22:23:00 字数 86 浏览 0 评论 0原文

在开发支持多语言的 ASP.Net 应用程序(使用 SQL Server 2008)时,我们在数据库设计中不应该使用哪些数据类型? 多语言软件会出现哪些问题?

While developing an ASP.Net application (using SQL server 2008) which has multi language support, what are the data-types that we should not use in the database design?
What problems can arise in a multi-lingual software?

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

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

发布评论

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

评论(1

她如夕阳 2024-12-11 22:23:00

不要使用 char/varchar 数据类型。您必须使用 nchar/nvarchar 数据类型来正确处理本地字符。唯一关心/问题是字段的排序规则,因为这会影响字段的排序顺序和比较。

Do not use the char/varchar datatypes. You have to use the nchar/nvarchar datatypes instead to handle the local characters correctly. The only concern/issue is the collation of the fields as this will affect the sort order and comparison of the fields.

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