您现在的位置是:网站首页> 编程资料编程资料
.Net 调用存储过程取到return的返回值_实用技巧_
2023-05-24
268人已围观
简介 .Net 调用存储过程取到return的返回值_实用技巧_
1. 存储过程
SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- ============================================= -- Author:-- Create date: -- Description: -- ============================================= alter PROCEDURE GetOrderLine @orderId varchar(50) AS BEGIN -- SET NOCOUNT ON added to prevent extra result sets from -- interfering with SELECT statements. SET NOCOUNT ON; select * from orderLine where OrderId = @orderId; return 123; END GO
注意 存储过程只能返回 int 类型,如果返回一个字符串 ,将会报类型转化错误
2 后台调用
DataTable dt = new DataTable(); string connStr = System.Configuration.ConfigurationManager.ConnectionStrings["BLL.Properties.Settings.ShoppingDBConnectionString"].ToString(); using(SqlConnection conn= new SqlConnection(connStr)){ string callName = "GetOrderLine"; using (SqlCommand command = new SqlCommand(callName, conn)) { command.CommandType = CommandType.StoredProcedure; SqlParameter[] sps = { new SqlParameter("@orderId",SqlDbType.VarChar,50) , new SqlParameter("@return",SqlDbType.Int) //注册返回值类型 }; sps[0].Value = "43c7cf15-6b2f-4d18-92b2-dbe827f30dfc"; sps[1].Direction = ParameterDirection.ReturnValue; //返回参数类型 command.Parameters.AddRange(sps); using(SqlDataAdapter sda =new SqlDataAdapter()){ sda.SelectCommand = command; sda.Fill(dt); //Console.WriteLine(sda.GetFillParameters()[1].Value); Console.WriteLine(sps[1].Value); //取到返回的值 } } } if(dt.Rows.Count>0){ for (int i = 0; i < dt.Rows.Count;i++ ) { Console.WriteLine(dt.Rows[i]["ProductId"]+":"+dt.Rows[i]["ProductPrice"]+":"+dt.Rows[i]["ProductCount"]); } } Console.ReadLine();
相关内容
- 使用ASP.NET创建线程实例教程_实用技巧_
- ASP.Net中命名空间Namespace浅析和使用例子_实用技巧_
- ASP.NET中的Inherits、CodeFile、CodeBehind的区别详解_实用技巧_
- 在IIS上重新注册.NET Framework 2.0的命令和参数详解_实用技巧_
- ASP.NET中常见文件类型、扩展名、存放位置及用途总结_实用技巧_
- asp.net实现生成静态页并添加链接的方法_实用技巧_
- ASP.NET中IsPostBack用法详解_实用技巧_
- ASP.NET让FileUpload控件支持浏览自动上传功能的解决方法_实用技巧_
- Asp.Net性能优化技巧汇总_实用技巧_
- Asp.Net中Cache操作类实例详解_实用技巧_