We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
odc433
Create a stored procedure in ob mysql create procedure ccgc (IN a varchar(45)) begin SET @Greeting = 'Hello'; SET @name = 'Alice';
ccgc
a
SELECT CONCAT(@Greeting, ', ', @name, '!'); end;
Execute stored procedures
No response
The text was updated successfully, but these errors were encountered:
Currently odc must use either out or inout declarations for stored procedures to return values
Sorry, something went wrong.
zijiacj
No branches or pull requests
ODC version
odc433
OB version
What happened?
What did you expect to happen?
How can we reproduce it (as minimally and precisely as possible)?
Create a stored procedure in ob mysql
create procedure
ccgc
(INa
varchar(45)) beginSET @Greeting = 'Hello';
SET @name = 'Alice';
SELECT CONCAT(@Greeting, ', ', @name, '!');
end;
Execute stored procedures
Anything else we need to know?
No response
The text was updated successfully, but these errors were encountered: