程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> .Net 調用存儲過程取到return的返回值

.Net 調用存儲過程取到return的返回值

編輯:ASP.NET基礎

1. 存儲過程

SET ANSI_NULLS ON 
GO 
SET QUOTED_IDENTIFIER ON 
GO 
-- ============================================= 
-- Author: <Author,,Name> 
-- Create date: <Create Date,,> 
-- Description: <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();

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved