Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
ExecSprocScalar and catch my return value
Message
From
24/04/2006 18:32:45
 
General information
Forum:
ASP.NET
Category:
The Mere Mortals .NET Framework
Miscellaneous
Thread ID:
01115912
Message ID:
01116147
Views:
15
Hi Stephen,

I get the feeling that you're mixing and matching where you shouldn't be. If you are indeed running the ExecuteScalar() method, what it returns to you is the first column of the first row of the result set returned by the query. But since it looks like you're trying to use parameters to return the RONumber, I'm guessing that this is not what you were expecting ExecuteScalar() to do. If you want to use OUTPUT parameters, they need to be specified as OUTPUT parameters in your Stored Proc and you need to use the Parameter.Direction property to set the direction appropriately (Output or InputOutput). (Also, you didn't say what backend database you're using and whether or not it supports output parameters in Stored Procs.)

~~Bonnie


>I have a SP that receives 12 params in and provides one out. I am following the help, but I am missing something. I get returned the 0, but my SP actually writes the proper RONumber in the db. :)
>
>Code shows:
> IDbCommand cmd;
> this.ExecSprocScalar("Jobs_Insert", out cmd,
> this.CreateParameter("@POnumber", POnumber),
> this.CreateParameter("@CustomerID", CustomerID),
>--sniped --
> this.CreateParameter("@RONumber", 0));
>
>
> // Retrieve the value from the command object
> IDbDataParameter param = (IDbDataParameter)cmd.Parameters["@ROnumber"];
> int x = (int)param.Value;
> return x;
>
>Any ideas?
>
>TIA
Bonnie Berent DeWitt
NET/C# MVP since 2003

http://geek-goddess-bonnie.blogspot.com
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform