postgres-async-driver
postgres-async-driver copied to clipboard
Asynchronous PostgreSQL Java driver
I wonder if it possible to auto commit a transaction without the need for calling tx.commit(). For example, instead of this: ``` db.begin() .flatMap(tx -> tx.querySet("insert into products (name) values...
ConnectionPoolBuilder should support the currentSchema parameter that you can use in the jdbc connection url string.
Hi. When using `ConnectionPool#listen` and if db suddenly stops (due to connectivity issues or any other problems causing db to become unreachable) and after that database is started again then...
Very interesting project. I like it very much. I hope it becomes mature enough to be used in production settings soon. I found this library the other after playing a...
I'm running com.github.pgasync.impl.AuthenticationTest.shouldThrowExceptionOnInvalidCredentials() junit test on the master,with minor changes of the host to a remote server (posgresql 8.4) in my LAN . and the test freezes waiting for something....
Hi Antti, Thanks for this library. I was wondering if there are any plans to yield rows lazily? I see in `PgResultSet` that `iterator()` is currently backed by an eager...