nVarchar 和 SqlParameter
我正在开发一个必须支持多种语言的应用程序。为了解决特殊字符问题,我在文本字段中使用 NVarhcar。所以我对文本字段的 SQL 查询是
insert into tbl_text(text)values(N'Chci tančit v oblasti')
我的问题是将其放入 SqlCommand 中,即 “insert into tbl_text(text)values(N@text)”
。当然,它会将“N@text”保存在数据库表中。
你们知道有什么办法吗?我正在使用 C# 和 SQL 2008。
很抱歉,如果很难理解我的问题。我的英语很差=/
I'm developing an application which must support several languages. To solve the special characters problem I'm using NVarhcar for my text fields. So my SQL query for a text field is
insert into tbl_text(text)values(N'Chci tančit v oblasti')
My problem is to put it in SqlCommand, wich is "insert into tbl_text(text)values(N@text)"
. It saves "N@text"
in the DB table, sure.
Do you guys know someway to do it? I'm using C# and SQL 2008.
Sorry if it was hard to understand my question. My English is poor =/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
由于这个原因,Add(string, object) 已被弃用(来自 SQL Server 团队的 Pablo Castro):
Add(string, object) has been deprecated for this reason (from Pablo Castro of the SQL Server team):
您应该使用 SqlParameters 参数化您的插入,这允许您明确指定数据类型。 (此外,它还可以让您免去弄清楚查询引起的 SQL 服务器注入攻击的麻烦)。
示例:
You should parametrize your inserts with SqlParameters which allow you to specify the datatype explicitly. (Also it saves you the headache of figuring out the SQL server injection attack your query caused).
Example:
不要在参数名称前加上“N”,它仅在使用字符串常量时使用,表明它是unicode字符串。所以你的查询应该是:
Don't put "N" before the parameter name, it is only used when using string constant to indicate it is a unicode string. So your query should be:
使用SQLParameters。
这是一个简单的例子:
Use SQLParameters.
Here is a simple example:
这是简单的例子
Here is Simple Example