【发布时间】:2015-03-25 11:00:03
【问题描述】:
我正在尝试使用 WCF 服务在 SQLServer 中插入值。 有 5 行要插入。
它的例外:
参数长度超过128个字符的限制
是的,它的长度超过 128 个字符。但我已经声明了大小 NVarChar(4000)。
我已经搜索了这个网站和其他网站以了解并摆脱这个异常
MedicineTestName = "1,crocin,2,aspirin,2,naproxen,3,ibuprofen,3,Ketaprofen";
代码:
public static string InsertHistory(string PatientId, string MedicineTestName, string CreateBy)
{
DataSet objdata;
object objSubjectReader = new object();
try
{
StringBuilder sb = new StringBuilder();
string[] wordswithcomma = MedicineTestName.Split(',');
for (int i = 0; i < wordswithcomma.Length -1 ; i=i+2)
{
string MedicineType = wordswithcomma[i];
string MedicineName = wordswithcomma[i + 1];
sb.Append("insert into tblMedicineHistory values(" + PatientId + "," + "'" + MedicineName + "'" + "," + MedicineType + ",GETDATE()," + "'" + CreateBy + "'" + ",GETDATE(),0);");
}
string sbo = sb.ToString();
SqlParameter[] param = new SqlParameter[1];
param[0] = new SqlParameter(sbo, System.Data.SqlDbType.NVarChar, 4000);
param[0].Value = sbo;
objdata = SqlHelper.ExecuteDataset(ConString, CommandType.StoredProcedure, "SP_MedicineHistory", param);
return JsonConvert.SerializeObject(objdata, Newtonsoft.Json.Formatting.Indented);
//return sbo;
}
catch (SqlException ex)
{
return objSubjectReader.ToString();
}
}
谢谢。
【问题讨论】:
-
我在这里很害怕;根据显示的代码,您应该不在医疗系统上工作...
标签: c# sql-server wcf exception