就是这么个简单的存储过程!
CREATE proc Lotec_DemandDataDelete
(
@EncodeIDs char(1000)
)
as
delete from Lotec_Demands where Lotec_Demands_EncodeID in (ltrim(rtrim(@EncodeIDs)))
GO
我在资源管理器中执行:
我的程序传给参数的值是:p[0].value= " 'xxxxxxx ', 'yyyyyyy ' ";
其中值数据库里面都有的?
但就是同不过去,我用的是sqlHeaper显示返回的所影响的行为0
不知道为什么,这个存储过程有问题吗!
------解决方案--------------------------------------------------------
这个问题最简单不过了