Hi
Can you help on a hello world sequel, I'm ok calling a stored
procedure and passing in a parameter(s), but how do I get return
parameters e.g from the below example
(MYSQL 5.1x)
CREATE DEFINER = 'root'@'localhost' PROCEDURE `usp_get`(
IN chair_in INTEGER,
OUT testa INTEGER(11)
)
NOT DETERMINISTIC
CONTAINS SQL
SQL SECURITY DEFINER
COMMENT ''
begin
set testa = 12345;
end
Thanks for help :)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sequel-talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/sequel-talk?hl=en
-~----------~----~----~----~------~----~------~--~---