主頁 > 知識(shí)庫 > .Net 調(diào)用存儲(chǔ)過程取到return的返回值

.Net 調(diào)用存儲(chǔ)過程取到return的返回值

熱門標(biāo)簽:征途美甲店地圖標(biāo)注 400電話如何申請(qǐng)取消 百度地圖怎樣做地圖標(biāo)注 騰訊地圖標(biāo)注手機(jī) 柳州電銷機(jī)器人公司 昆明語音電銷機(jī)器人價(jià)格 浦發(fā)電話機(jī)器人提醒還款 電銷語音機(jī)器人型號(hào)參數(shù) 太原400電話上門辦理

1. 存儲(chǔ)過程

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

 注意 存儲(chǔ)過程只能返回 int 類型,如果返回一個(gè)字符串 ,將會(huì)報(bào)類型轉(zhuǎn)化錯(cuò)誤

2 后臺(tái)調(diào)用

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) //注冊(cè)返回值類型 
}; 

sps[0].Value = "43c7cf15-6b2f-4d18-92b2-dbe827f30dfc"; 
sps[1].Direction = ParameterDirection.ReturnValue; //返回參數(shù)類型 

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();

標(biāo)簽:江蘇 陽泉 白山 新疆 天門 張家界 德陽 蘭州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《.Net 調(diào)用存儲(chǔ)過程取到return的返回值》,本文關(guān)鍵詞  .Net,調(diào)用,存儲(chǔ),過程,取,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《.Net 調(diào)用存儲(chǔ)過程取到return的返回值》相關(guān)的同類信息!
  • 本頁收集關(guān)于.Net 調(diào)用存儲(chǔ)過程取到return的返回值的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章