Permalink: http://bit.ly/RcRieg
Refer to part 1 for the rationale behind the code or
you can skip to part 3 for a working example as well as how
you can debug the stored procedure.
Important: The SP will create a table named
`dynamic_cursor`. Make sure this table does not exist in the
database where you will be storing the procedure. Here's the 1st
iteration of a general purpose dynamic cursor:
DELIMITER $$[Read more]
DROP PROCEDURE IF EXISTS `dynamicCursor` $$
CREATE DEFINER=`root`@`localhost` PROCEDURE `dynamicCursor`(
IN selectStmt TEXT,
IN whatAction VARCHAR(255),
INOUT …