How to fetch the return value from a stored procedure?

I noticed that the stored procedure returns an integer on its own. I need to fetch it in C#.
|
How to fetch the return value from a stored procedure?
I noticed that the stored procedure returns an integer on its own. I need to fetch it in C#. |
|||||||
|
|
You can make use of Return parameter in C# to get that value. Like as below
Note your procedure must return a value to be able to fetch it:
|
||||
|
|
|
Check Following Code:
For further reference check link: Getting return value from stored procedure in C# |
|||
|
|
|
In your SP, you need to return And mke sure you use proper data type in C# and in database column |
|||
|
|
|
You can use |
||||
|