Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Return Error from Stored Procedure with Executescalar
Message
 
To
All
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Title:
Return Error from Stored Procedure with Executescalar
Miscellaneous
Thread ID:
01536589
Message ID:
01536589
Views:
81
Hi.
I have the code below, which is going into the Catch Bit, but I dont know why (It does not like the ExecuteScalar bit).
Is there a way of returning the Error from a stored procedure when using an ExecuteScalar
My Stored procedure is like:
Select Sum(MyBalance) as MyBal From MyTable
(It works fine in SSMS)

Tia
Gerard


----------------------------------------------------------------------------------------------
try
{
// --- initialization stuff for com ---
com.CommandType = CommandType.StoredProcedure;
decimal dec = (decimal)com.ExecuteScalar();
com.ExecuteScalar(); // E R R O R S O U T H E R E B U T D O N T K N O W W H Y
}
catch
{ MessageBox.Show("There has been an error "); }
-----------------------------------------------------------------------------------------------
Next
Reply
Map
View

Click here to load this message in the networking platform