在创建带输出参数和返回值的存储过程时---犯下的一个低级错误
异常处理汇总-数据库系列 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
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 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
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】博客园社区专享云产品让利特惠,阿里云新客6.5折上折
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 用 C# 插值字符串处理器写一个 sscanf
· Java 中堆内存和栈内存上的数据分布和特点
· 开发中对象命名的一点思考
· .NET Core内存结构体系(Windows环境)底层原理浅谈
· C# 深度学习:对抗生成网络(GAN)训练头像生成模型
· 手把手教你更优雅的享受 DeepSeek
· AI工具推荐:领先的开源 AI 代码助手——Continue
· 探秘Transformer系列之(2)---总体架构
· V-Control:一个基于 .NET MAUI 的开箱即用的UI组件库
· 乌龟冬眠箱湿度监控系统和AI辅助建议功能的实现