MySQL Forums
Forum List  »  Triggers

Re: How to Raise Error ?
Posted by: William Chiquito
Date: December 19, 2006 07:53PM

Hi Roland,

Very good your solution.

That you think of a solution like this:

DELIMITER $$

DROP PROCEDURE IF EXISTS `MyRaiseError`$$

CREATE PROCEDURE `MyRaiseError`(msg VARCHAR(62))
BEGIN
DECLARE Tmsg VARCHAR(80);
SET Tmsg = msg;
IF (CHAR_LENGTH(TRIM(Tmsg)) = 0 OR Tmsg IS NULL) THEN
SET Tmsg = 'ERROR GENERADO';
END IF;
SET Tmsg = CONCAT('@@MyError', Tmsg, '@@MyError');
SET @MyError = CONCAT('INSERT INTO', Tmsg);
PREPARE stmt FROM @MyError;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;
END$$

DELIMITER ;

mysql> call MyRaiseError('Here error message!');
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use near '@@MyE
rrorHere error message!@@MyError' at line 1

You will always have he himself message of error with the string of error between “@@MyError”. The idea is that soon you clean to the string being single the error message.

It is not the best solution but the declaration of the UDF with the DLL is avoided.

What you think? thanks.

Options: ReplyQuote


Subject
Views
Written By
Posted
25018
November 17, 2005 04:00AM
16712
November 17, 2005 06:58AM
23668
November 19, 2005 08:53AM
14491
February 23, 2006 02:28AM
10780
February 23, 2006 04:42AM
15438
February 24, 2006 08:28AM
8474
February 24, 2006 10:15AM
6251
February 24, 2006 12:42PM
7880
February 27, 2006 08:56AM
6679
February 27, 2006 11:27AM
18865
February 28, 2006 05:22AM
6527
December 20, 2006 03:34AM
4094
November 18, 2008 08:28AM
4737
November 18, 2008 12:45PM
6148
December 19, 2006 11:00AM
4951
December 19, 2006 02:35PM
Re: How to Raise Error ?
6204
December 19, 2006 07:53PM
4397
December 20, 2006 03:37AM
4604
December 19, 2006 11:01AM
5483
November 24, 2006 05:32AM
4459
November 24, 2006 07:02AM
3603
December 23, 2008 06:08AM
11149
February 25, 2006 11:48PM
4937
December 19, 2007 04:24AM
3909
December 24, 2008 01:02PM
4754
December 19, 2007 03:59AM
4616
December 19, 2007 05:09AM
3512
November 18, 2008 08:25AM
3895
November 18, 2008 12:49PM
5994
December 19, 2007 04:46AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.