postgres-async-driver icon indicating copy to clipboard operation
postgres-async-driver copied to clipboard

Asynchronous PostgreSQL Java driver

Results 26 postgres-async-driver issues
Sort by recently updated
recently updated
newest added

Hi, i've just started using postgres-async-driver and nothing from provided example worked. here is my code: `@Bean Db db() { log.info("\n\n==> @ VALUE CONNECTING>> {}/[user:{} , pass: {}]\n", DB_URL, DB_URL,DB_PASS);...

Example: ``` public void runTest() { final CountDownLatch trigger = new CountDownLatch(1); final String currentDate = new SimpleDateFormat("YYYY-MM-dd").format(new Date()); out.println("currentDate: " + currentDate); db.begin().flatMap(tx -> tx.queryRows("select 1::int4 where current_date =...

Hi, i am really like this project and i am interesting do someone use it in production?

In the [DataConverter](https://github.com/alaisi/postgres-async-driver/blob/a05af060daf55297c9cfa3622965935cf2b5a4eb/src/main/java/com/github/pgasync/impl/conversion/DataConverter.java), you have `get` which supports custom converters, but all the other methods like `getArray` do not. This should be rearchitected. You should make static `Converter` instances for...

enhancement

Null values can be difficult for different reactive streams implementations to handle (e.g. https://github.com/monix/monix/issues/252). I understand it can cause compatibility concerns, but possibly changing `com.github.pgasync.Transaction::commit` to return `Observable` or `Observable`...

It appears calling `close` hangs if the connection is already terminated. I have not independently tested this, it's just via empirical evidence.

Simply add the `NAME` oid to the `StringConversions` and `NAME_ARRAY` to the array conv. It is used for object names in postgres.

Row interface does not currently provide - Number of columns in the row (so you could iterate over them when e.g. selecting *) - Names of columns (this information could...