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

简介:

异常处理汇总-数据库系列  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

 

目录
相关文章
|
7月前
|
存储 编译器 C语言
【C/C++ 函数返回的奥秘】深入探究C/C++函数返回:编译器如何处理返回值
【C/C++ 函数返回的奥秘】深入探究C/C++函数返回:编译器如何处理返回值
680 3
|
Serverless
函数计算在执行请求的过程中遇到了意外的错误
函数计算在执行请求的过程中遇到了意外的错误
96 1
|
4月前
|
C++
Memcheck错误解释
Memcheck错误解释
|
4月前
|
JavaScript 前端开发 Java
Mgo
|
Shell Go
go调用shell命令两种方式实现(有无返回值)
go调用shell命令两种方式实现(有无返回值)
Mgo
1611 1
定义函数,并用指针交换两个变量内容(正确版和错误版+错误原因)
定义函数,并用指针交换两个变量内容(正确版和错误版+错误原因)
96 0
定义函数,并用指针交换两个变量内容(正确版和错误版+错误原因)
|
小程序
小程序 onLaunch 参数差别
小程序 onLaunch 参数差别
545 0
小程序 onLaunch 参数差别
|
算法 编译器 C#
通过运行期类型检查实现泛型算法
通过运行期类型检查实现泛型算法
101 0
|
SQL BI 关系型数据库
参数为空取全部数据的几种做法
当通过多个参数对数据进行过滤并且不选择某个参数时,希望依然能够查询出其他带条件的数据,也就是参数为空时忽略掉该条件,点击 <a href="http://c.raqsoft.com.cn/article/1543386793666?r=IBelieve" target="_blank" rel="n...
1014 0
|
C++
vs调试的时候,指定的参数已超出有效值的范围。参数名:sit ,先仔细看看错误和我的一样不一样
https://www.cnblogs.com/pei123/p/7694947.html 指定的参数已超出有效值的范围。参数名:sit ,先仔细看看错误和我的一样不一样 更新了1709就这样了,的确修复了就可以了 控制面板>程序> 网名:浩秦; 邮箱:root#landv.pw; 只要我能控制一個國家的貨幣發行,我不在乎誰制定法律。
1127 0