Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to execute store procedure #34

Open
leamlidara opened this issue Jul 28, 2022 · 1 comment
Open

Unable to execute store procedure #34

leamlidara opened this issue Jul 28, 2022 · 1 comment

Comments

@leamlidara
Copy link

I have a store procedure which call some complex functions or other store procedure inside it. but unfortunately, it cannot be execute using this package.

@leamlidara
Copy link
Author

Here is my sample store procedure.

DELIMITER //
DROP PROCEDURE IF EXISTS `spGetUser`//
CREATE PROCEDURE `spGetUser` (_userId INT(11) UNSIGNED)
BEGIN
	SELECT user_id, email, full_name, register_date FROM tbl_user WHERE user_id=_userId LIMIT 1;
END //
DELIMITER ;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant