前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >在创建带输出参数和返回值的存储过程时---犯下的一个低级错误

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

作者头像
逸鹏
发布2018-04-10 11:32:49
1.2K0
发布2018-04-10 11:32:49
举报
文章被收录于专栏:逸鹏说道逸鹏说道

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

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

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

处理后:

代码语言:javascript
复制
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

代码语言:javascript
复制
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

本文参与 腾讯云自媒体分享计划,分享自微信公众号。
原始发表:2016-04-10,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 我为Net狂 微信公众号,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档