摘要: 1.存储过程没有返回值的情况(即存储过程语句中没有return之类的语句)用方法 int count = ExecuteNonQuery(..)执行存储过程其返回值只有两种情况(1)如果通过查询分析器执行该存储过程,在显示栏中如果有影响的行数,则影响几行count就是几(2)如果通过查询分析器执行该... 阅读全文
posted @ 2014-07-23 21:45 qqhfeng16 阅读(2357) 评论(0) 推荐(0)
摘要: declare @dingdanid int declare @fanhuizhi intset @dingdanid = 1exec 检测订单出库资格 @dingdanid ,@fanhuizhi output (注意别忘了output否则返回值是NULL)select @fanhuizhicre... 阅读全文
posted @ 2014-07-23 21:35 qqhfeng16 阅读(1533) 评论(0) 推荐(0)