C # Call the SQL Server Stored Procedure Return Value

Source: Internet
Author: User

-- Return value using parameterdirection. returnvalue;
Create procedure DBO.
As
Declare @ I int
Select @ I = count (*) from tbd_m_modle
Return @ I
Go

-- Return value using parameterdirection. output;
Create procedure DBO.
@ I int output
As

Select @ I = count (*) from tbd_m_modle
Return @ I
Go

//
Sqlcommand cmd = new sqlcommand ("A", myconn );
Cmd. commandtype = commandtype. storedprocedure;

// Input value
// Sqlparameter a1 = new sqlparameter ("@ A", sqldbtype. varchar, 100 );
// A1.value = "AAA ";
// Cmd. Parameters. Add (A1 );

// Return Value
Sqlparameter I = new sqlparameter ("@ II", sqldbtype. Int, 4 );
I. Direction = parameterdirection. output;
// I. Direction = parameterdirection. returnvalue;

Cmd. Parameters. Add (I );

Cmd. executenonquery ();

String strreturn = I. value. tostring (); // return value -- Method 1
String A = cmd. Parameters ["@ II"]. value. tostring (); // return value -- method 2

Cmd. Connection. Close ();

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.