davidmoten / davidmoten/rxjava-jdbc
Feat: Stored Procedures
Open
enhancement
- Dominant language
- Java
- Stars
- 801
- Forks
- 114
- Avg merge
- 1m
- Merged PRs (30d)
- 3
Description
(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:
``` java
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.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.