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
When executing things that produce multiple result values, it is currently unclear when to expect:
Result
Statement::execute
Segment
Result::flatMap
Reverse engineering the drivers (I'm still on 0.9.x, maybe this has changed), I feel we have:
Batch
;
Statement
There may be other cases, or inconsistencies. I don't have much confidence in my above judgement.
I would like to see, in the Javadoc, some clarification about:
The text was updated successfully, but these errors were encountered:
Note, we've probably discussed this elsewhere in the past, but I've forgotten. Thus, it would be great if the Javadoc specified this.
Sorry, something went wrong.
No branches or pull requests
Feature Request
Is your feature request related to a problem? Please describe
When executing things that produce multiple result values, it is currently unclear when to expect:
Result
values from theStatement::execute
publisherSegment
values from the variousResult::flatMap
and other methodsReverse engineering the drivers (I'm still on 0.9.x, maybe this has changed), I feel we have:
Result
valuesBatch
(multiple SQLs, no binds);
separated statement batch in a singleStatement
, e.g. in SQL ServerSegment
valuesStatement
with batched bind valuesThere may be other cases, or inconsistencies. I don't have much confidence in my above judgement.
Describe the solution you'd like
I would like to see, in the Javadoc, some clarification about:
The text was updated successfully, but these errors were encountered: