Access 对于支持 unicode 的数据类型(例如 SQL Server 中的 nvarchar)是否有任何问题?
我使用 Access 2003 作为 SQL Server 2008 数据库的前端 UI。在查看我的 SQL Server 数据库设计时,我想知道 nvarchar 是否是使用 varchar 的正确选择。我选择 nvarchar 是因为我认为在需要输入任何由 unicode 表示的字符时它会很有用。但是,我没有考虑使用 uni-code 数据类型的 Access 2003 可能出现的任何问题。 Access 2003 在 SQL Server 中使用 unicode 数据类型(即 nvarchar)时是否存在任何问题?谢谢。
I am using Access 2003 as a front end UI for a SQL Server 2008 database. In looking at my SQL Server database design I am wondering if nvarchar was the right choice to use over varchar. I chose nvarchar because I thought it would be useful in case any characters represented by unicode needed to be entered. However, I didn't think about any possible issues with Access 2003 using the uni-code datatype. Are there any issues with Access 2003 working with unicode datatypes within SQL Server (i.e. nvarchar)? Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果这是该作业的正确数据类型,您可以继续使用
nvarchar
。 Access 支持 Unicode 数据,既可以使用其自己的表,也可以使用外部(链接)表和直接查询。You can go ahead and use
nvarchar
, if that's the correct datatype for the job. Access supports Unicode data, both with it's own tables and with external (linked) tables and direct queries.