postgres.async
postgres.async copied to clipboard
Asynchronous PostgreSQL client for Clojure
Hi Been a long time user of your software, it works great usually, but we've been running into an issue recently that is causing us quite a few problems. Seeing...
```sql create table t (id int not null); ``` ```clojure ( {:updated 1 :rows []} ( {:updated 0 :rows []} instead of an error ``` platform: PostgreSQL 11 + Java...
Hello, i found it quite uncomfortable, that i have to pass connection details as params map. Why there no possibility to pass jdbc url?
If a statement within a multi-statement transaction causes an error, such as an INSERT that does not provide a value for a NOT NULL column, this error is currently lost....
I'd like to use '_' for DB table column names, but '-' in Clojure world. Or more generally, I want to provide a function like my-converter which might map db...
Is it possible to `execute!` a `LISTEN` statement and have the callback be invoked asynchronously for new values? Or anyway of doing this? Nice work by the way. Works well...
This is the result of trying to insert [[6 6]] into a column of INTEGER[][]. ``` java.lang.Thread.run Thread.java: 745 io.netty.util.concurrent.DefaultThreadFactory$DefaultRunnableDecorator.run DefaultThreadFactory.java: 137 io.netty.util.concurrent.SingleThreadEventExecutor$2.run SingleThreadEventExecutor.java: 112 io.netty.channel.nio.NioEventLoop.run NioEventLoop.java: 371 io.netty.channel.nio.NioEventLoop.processSelectedKeys NioEventLoop.java:...
Hello, I think this is a feature request, because I did not find how to do it. I'd want to have a query delivered as a stream (for example, returning...
I can't replicate this and don't understand it yet. Sometimes I have the `java.lang.IllegalStateException - Channel is closed` exception when getting results. For example: ``` clojure (let [sql (str "select...
Is there a way to specify timeouts?