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

link|improve this question

63% accept rate
2  
mysql or mssql server or both? – Preet Sangha Aug 11 '11 at 12:59
feedback

2 Answers

up vote 11 down vote accepted

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)

link|improve this answer
11  
note the severity must be >= 16 for it to surface as a SqlException – Marc Gravell Aug 11 '11 at 13:01
I try RAISERROR ('Error raised', -- Message text. 16, -- Severity. 1 -- State. ); what I want to ask is that will this terminate the stored procedure ? – Aptos Aug 11 '11 at 13:25
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.
It helps if the tablename gives a description of the error.

Example:

DELIMITER $$

CREATE PROCEDURE throw_exception (IN param1 INTEGER)
BEGIN
  DECLARE testvar INTEGER;
  SELECT testfield INTO testvar FROM atable WHERE id = param1 LIMIT 1;
  IF testfield IS NULL THEN
     /*throw the error here*/
     SELECT * FROM 
       error_testfield_in_atable_not_found_youve_entred_a_nonexisting_id_in_throw_exception;
  END IF;
END $$

DELIMITER ;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.