MySQL Forums
Forum List  »  Stored Procedures

Re: what is the equivalent to EXEC()
Posted by: William Chiquito
Date: May 07, 2007 09:22AM

Hi Hugues,

When executing the following SP does not generate error. We are speaking of 925 rows.
DELIMITER $$

DROP PROCEDURE IF EXISTS `sptest`$$

CREATE PROCEDURE `sptest`()
BEGIN
	DECLARE done INT DEFAULT 0; 
	DECLARE _TableName, _TableSchema, _TableType VARCHAR(64);
	DECLARE cur CURSOR FOR
	SELECT TABLE_SCHEMA, TABLE_NAME, TABLE_TYPE FROM information_schema.TABLES;
	
	DECLARE CONTINUE HANDLER FOR SQLSTATE '02000' SET done = 1;
	
	OPEN cur;
	
	REPEAT FETCH cur INTO _TableName, _TableSchema, _TableType;
	
	IF NOT done THEN
		PREPARE stmt1 FROM 'SELECT "ok"';
		EXECUTE stmt1;
		DEALLOCATE PREPARE stmt1;
	END IF;
	
	UNTIL done END REPEAT;
	
	CLOSE cur; 
END$$

DELIMITER ;

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: what is the equivalent to EXEC()
6698
May 07, 2007 09:22AM
6980
July 30, 2007 08:10AM
3898
August 01, 2007 10:06AM


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.