-
Notifications
You must be signed in to change notification settings - Fork 46
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
Stored Procedures Support #287
Comments
Hi, Neo! They should be called via query as described in the PostgreSQL documentation. Nothing special is needed. Any problem with the approach? Best regards. |
|
Well, there is CALL statement for this. Still, nothing special is needed, just a query. |
Thanks, apparently need to ask more specific questions! |
Can you give an example of calling a stored procedure that has an INOUT parameter? In other words: how to use a call of |
Hi, Neo! As far as I understand the PostgreSQL documentation the out (or output part of INOUT) parameters may be obtained as a query result.
To get a query result Hope that helps. |
PS if you have any trouble with that please let me know. We didn't use a procedure call, the only function calls, but had no problem with that. |
@thed636 thanks, i already found this workaround. This works as expected but need to pass really unused parameter in call. |
What about Stored Procedures support in library? How to call & how to pass IN/OUT/INOUT parameters?
The text was updated successfully, but these errors were encountered: