在创建带输出参数和返回值的存储过程时---犯下的一个低级错误

简介:

异常处理汇总-数据库系列  http://www.cnblogs.com/dunitian/p/4522990.html

后期会在博客首发更新:http://dnt.dkill.net/Article/Detail/313

错误如图,怎么执行都没有自己想要的效果(return掉了,还有个啥???!!!)

处理后:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
if exists( select  from  sysobjects  where  name = 'usp_AllPmsTest' )
     drop  proc usp_AllPmsTest
go
create  proc usp_AllPmsTest
@cityName nvarchar(30),
@id  int  output
as
begin
     insert  into  ShopModelBak  values (@cityName,1,1)
     set  @id=@@identity
 
     select  CPName,CName,SName,MType,MName,Mprice  from  ShopMenu
     inner  join  ShopModel  on  ShopMenu.MShopId=ShopModel.SId
     inner  join  View_CityData  on  ShopMenu.MCityId=CId
     where  CName=@cityName
 
     return  ( select  count (1)  from  ShopMenu)
end
go
declare  @total  int ,@id  int
exec  @total=usp_AllPmsTest  '滨湖区' ,@id  output
select  @id Id,@total total

 

ADO.Net

var pms = new SqlParameter[]
                          {
                          new SqlParameter("@cityName", "滨湖区"),
                          new SqlParameter("@id", SqlDbType.Int),
                          new SqlParameter("@total", SqlDbType.Int)
                          };
            pms[1].Direction = ParameterDirection.Output;
            pms[2].Direction = ParameterDirection.ReturnValue;
            var list = SQLHelper.ExecuteReader<ShopMenu>("usp_AllPmsTest", CommandType.StoredProcedure, pms);
            foreach (var item in list)
            {
                Console.WriteLine(item.MName + " " + item.MPrice);
            }
            Console.WriteLine("刚才插入的ID是:{0},总共{1}条数据", pms[1].Value, pms[2].Value);

相关文章:http://www.cnblogs.com/dunitian/p/5362528.html

 

目录
相关文章
|
1月前
|
存储 编译器 C语言
【C/C++ 函数返回的奥秘】深入探究C/C++函数返回:编译器如何处理返回值
【C/C++ 函数返回的奥秘】深入探究C/C++函数返回:编译器如何处理返回值
125 3
|
5月前
|
Serverless
函数计算在执行请求的过程中遇到了意外的错误
函数计算在执行请求的过程中遇到了意外的错误
62 1
|
11月前
|
Linux
LINUX驱动出错返回值规范
LINUX驱动出错返回值规范
78 0
|
测试技术
loadrunner 脚本开发-参数化之将内容保存为参数、参数数组及参数值获取
loadrunner 脚本开发-参数化之将内容保存为参数、参数数组及参数值获取
87 0
Mgo
|
Shell Go
go调用shell命令两种方式实现(有无返回值)
go调用shell命令两种方式实现(有无返回值)
Mgo
1487 1
|
C++
vs调试的时候,指定的参数已超出有效值的范围。参数名:sit ,先仔细看看错误和我的一样不一样
https://www.cnblogs.com/pei123/p/7694947.html 指定的参数已超出有效值的范围。参数名:sit ,先仔细看看错误和我的一样不一样 更新了1709就这样了,的确修复了就可以了 控制面板>程序> 网名:浩秦; 邮箱:root#landv.pw; 只要我能控制一個國家的貨幣發行,我不在乎誰制定法律。
1077 0