日期:2014-05-17  浏览次数:20804 次

asp 调用存储过程 ntext 参数
在asp中调用存储过程如下:
Comm.Parameters.Append   Comm.CreateParameter( "@Content ",201,1,16,Content)
在这里指定数据类型为201,长度为16
程序错误提示:
应用程序在当前操作中使用了错误类型的值。
存储过程中
@Content的数据类型为nText
是什么原因?应该如何解决?


------解决方案--------------------
Comm.Parameters.Append Comm.CreateParameter( "@Content ",200,1,16,Content)