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
(I saw a comment on the README along the lines of supporting Callable statements. Assuming this is where you were heading with that?)
Maybe something like:
String state = db. .call("{call GetStateByZip(?)}") .parameter(90210) .getAs(String.class) .first().toBlocking().single(); System.out.println(state); // California
Stored procedures would support named parameters, as already supported in other queries.
The text was updated successfully, but these errors were encountered:
Seems fair enough. Maybe some basic support first for a use case like you show then later stuff like binding OUT parameters.
Sorry, something went wrong.
Sounds good! Regarding OUT parameters, you could probably leverage the getAs(Class<?>...) part of the API right?
No branches or pull requests
(I saw a comment on the README along the lines of supporting Callable statements. Assuming this is where you were heading with that?)
Maybe something like:
Stored procedures would support named parameters, as already supported in other queries.
The text was updated successfully, but these errors were encountered: