rxjava2-jdbc
rxjava2-jdbc copied to clipboard
RxJava2 integration with JDBC including Non-blocking Connection Pools
How can I insert some null parameter through `.input(Object...)` method call? The _Workings with nulls section_ doesn't provide an example with Callable Statements. I'm trying some approaches but nothing works...
Hello, @davidmoten! Thank you for your work on this project, it's very useful and it definitely helps a lot of developers. I noticed that auto-map support for concrete classes was...
Hello there! I feel that I'm over complicating over, possibly overkilling it... but I need the following operations to be within a transaction: 1. Update parent resource 2. Delete orphan...
When using Database.nonBlocking() and not providing a custom scheduler the ExecutorService created is never shutdown. This will prevent JVM shutdown. The responsibility to close it lies in the library because...
I've just migrated from rxjava-jdbc to rxjava2-jdbc and noticed that [automapping to a concrete class feature](https://github.com/davidmoten/rxjava-jdbc#automap-using-a-concrete-class) is missing. That was a really useful tiny little thing. Can we hope it...
Array parameters in JDBC need to be set as `java.sql.Array`, which need to be instantiated via the `java.sql.Connection`. The rxjava2-jdbc API does not allow access to the `Connection` (or `PreparedStatement`)...
I have a function that executes 2 updates in a transaction. After running the code, I don't see any change in the db. I suspect the transaction is not committed....
When the parameter MaxIdleTime is used, idle connections are properly closed after the given duration. However, it seems they are not properly evicted from the pool (or re-connection does not...
This ticket probably defeats its creation as this project is also about JDBC. Have you considered providing this library on top of a truly reactive database integration such as R2DBC?...