c#帶輸入輸出參數調用預存程序

來源:互聯網
上載者:User

上篇講了在立即訊息系統中如何控制線程事件 這次講講C#中如何調用預存程序。登峰之道的原則是盡量用簡短的代碼說明問題:)

1。在SQL SERVER中的相應預存程序

CREATE PROCEDURE  sp_test  @ln  varchar(10) , @msg  varchar(80) output
  AS
declare @flag int
declare @un varchar(80)
set @flag=99

select @un= username     from msg_userinfo  where LoginName=@ln

set @msg="this message from sp_test:"
select  @msg =+@msg+@un
 
return @flag
GO

2.C#調用預存程序

private void TestSP()
   {
    SqlCommand _cmd=new SqlCommand();
    DbBase db=DbBase.GetInstance();
    _cmd.Connection=db.conn;
    _cmd.CommandType=CommandType.StoredProcedure;
   
   
    _cmd.CommandText="sp_test";// SQL Server Procedure Name
   
    //輸入登入名稱
    SqlParameter un=new SqlParameter();
    un.ParameterName="@ln";
    un.DbType=DbType.String;
    un.Direction=ParameterDirection.Input;
    un.SourceVersion=DataRowVersion.Current;
    _cmd.Parameters.Add(un);             
    
    _cmd.Parameters["@ln"].Value="zsb";

    //RETURN_VALUE parameter
    SqlParameter _RETURN_VALUE=new SqlParameter();
    _RETURN_VALUE.ParameterName="@RETURN_VALUE";
    _RETURN_VALUE.DbType=DbType.Int32;
    _RETURN_VALUE.Direction=ParameterDirection.ReturnValue;
    _RETURN_VALUE.SourceVersion=DataRowVersion.Current;
    _cmd.Parameters.Add(_RETURN_VALUE);

    //Return Message
    SqlParameter    outpara=new SqlParameter();
    outpara = new SqlParameter("@msg", SqlDbType.VarChar,100);
    outpara.Direction = ParameterDirection.Output;
    _cmd.Parameters.Add(outpara);
                 _cmd.ExecuteNonQuery();

    
    Console.WriteLine((int) _cmd.Parameters["@RETURN_VALUE"].Value);

    
    Console.WriteLine(_cmd.Parameters["@msg"].Value.ToString());

 

    //UserName parameter
   

   }

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.