asyncpg icon indicating copy to clipboard operation
asyncpg copied to clipboard

Asynchronous PostgreSQL driver for Nim language

Results 9 asyncpg issues
Sort by recently updated
recently updated
newest added

With this issue I would like to ask if this repo is still being actively maintained. I see there is a PR to support Nim 0.19.0 which is already quite...

Notify can only recieve when sendNotify is send through the same connection with the notify. ```nim proc testConnectionNotify(conn, conn2: apgConnection): Future[bool] {.async.} = var r1 = false var r2 =...

Sorry I'm a freshman of nim-lang, I'm tring to implement a postgresql client which can listen to the notification from server, and now I'm wondering how can I get the...

Pool size of 10 works, pool size of 5 does not. ```nim import asyncdispatch, asyncpg/asyncpg const POOL_SIZE = 5 var pool = newPool(POOL_SIZE) proc main() {.async.} = var start: float...

When send multiple sql, and some sql failed, we must wait untill pqgetResult(conn.pgconn) return nil, or else, the connection will remain unusable.

Because the listen/notify connection must be the same, and using apgPool doesn't promise it, so it is not proper when using apgPool to listen and notify, because they will get...

Hi thanks for the great work. Can we please have support for parameters in multiple statements? There seems to be some work complete on this for https://github.com/tulayang/asyncmysql so would be...

enhancement