How can I throw exception in a stored procedure For example:
@temp int =0
As
BEGIN
SELECT @int = COUNT(*) FROM TABLE1
END
IF(@temp>0)
throw SQL Exception
P/S: not use return value
|
How can I throw exception in a stored procedure For example:
P/S: not use return value
| |||||
feedback
|
|
RAISERROR for MSSQL Server. As @Marc Gravell: note the severity must be >= 16 for it to surface as a SqlException. Read this SO answer for MySql. This blog post also shows how to do it in MySQl (if <=6.0) | |||||||
feedback
|
|
In MySQL there is no way to throw an exception in a stored procedure, but you can force an error by selecting from a non-existing table. Example:
| |||
|
feedback
|