当前位置: 代码迷 >> ASP >> asp使用存储过程输出ntext类型的数据,该怎么解决
  详细解决方案

asp使用存储过程输出ntext类型的数据,该怎么解决

热度:231   发布时间:2012-03-22 17:43:57.0
asp使用存储过程输出ntext类型的数据
CREATE   PROCEDURE   mysp_test
@id   int,
@Content   ntext   output
as
begin
    .....................
end
go


提示不能以ntext数据类型作为参数   ????


------解决方案--------------------
use @Content nvarchar(4000)

or return a recordset
eg:

CREATE PROCEDURE mysp_test
@id int
as
select content from tableName where id=@id
go
  相关解决方案