码迷,mamicode.com
首页 > 其他好文 > 详细

C#操作Nvarchar(max)

时间:2014-06-30 22:42:22      阅读:270      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   数据   os   io   

 

和操作一般nvarchar一样,要注意的一点就是SqlDbType.Nvarchar的长度设置为-1,

new SqlParameter("@text",SqlDbType.NVarChar,-1)
 public bool AddMax()
 {
            StringBuilder strSql = new StringBuilder();
            strSql.Append("insert into tb_MaxTest(");
            strSql.Append("id,text) values(@id,@text);");

            SqlParameter[] parameters = new SqlParameter[]
            { 
                new SqlParameter("@id",SqlDbType.VarChar,50),
                new SqlParameter("@text",SqlDbType.NVarChar,-1)
            };
            parameters[0].Value = "111";
            parameters[1].Value = "写stored procedure时候,如果有参数的type是nvarchar(max)在.Net端设定size时候要设为-1 举例:如果有个参数@Message数据型态是nvarchar(max),在程序端撰写时需写成:new SqlParameter(\"@Message\",SqlDbType.NVarChar,-1)";
            int row = DbHelperSQL.ExecuteSql(@"server=CNPVG-SQLVM\TESTER;Initial Catalog=DMS_Quotation;Pwd=Welcome88;Uid=sqlAdmin;",strSql.ToString(),parameters);
            return row > 0;
        }

 

C#操作Nvarchar(max),布布扣,bubuko.com

C#操作Nvarchar(max)

标签:style   blog   color   数据   os   io   

原文地址:http://www.cnblogs.com/alongjun/p/3816076.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!