Re: Trouble with MySqlCommandBuilder.DeriveParameters
Posted by: Andreas Neuss
Date: April 14, 2015 01:14PM

CREATE DEFINER=`root`@`localhost` PROCEDURE `SP_PROCNAME`(IN `p_StartItem` INT, IN `p_ItemCount` INT)
LANGUAGE SQL
NOT DETERMINISTIC
CONTAINS SQL
SQL SECURITY INVOKER
COMMENT ''
BEGIN
SELECT * FROM table_name LIMIT p_StartItem, p_ItemCount;
END

Options: ReplyQuote


Subject
Written By
Posted
Re: Trouble with MySqlCommandBuilder.DeriveParameters
April 14, 2015 01:14PM


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.