Results 7 comments of roddyyaga

> https://github.com/arenadotio/pgx Drive-by suggestion: caqti is a lot more popular than pgx for accessing Postgres (compare https://opam.ocaml.org/packages/caqti/ and https://opam.ocaml.org/packages/pgx/), I'd also shill my library for making queries nicer to write...

Update: yes you can use it in BuckleScript; see my fork [here](https://github.com/roddyyaga/bs-ppx_deriving_yojson).

I'd happily accept a PR to fix this, but am unlikely to write one myself any time soon. I think the best way to do it would be using [ppx...

The way ppx_rapper works is that input parameters (`%type{...}`) are converted into the SQL parameter `?`. These can only be used for things that are parameters from a SQL perspective,...

Hi, I've added an example of that to [the examples](https://github.com/roddyyaga/ppx_rapper/blob/master/examples/lwt/examples_lwt.ml#L142). The connection is a caqti thing, not ppx_rapper, so you'll probably find [the caqti docs](https://github.com/paurkedal/ocaml-caqti) more useful.

Currently using more than one parameter with the `%list` syntax isn't supported (I am changing the error message for this to be more informative). I would probably try constructing the...

> Is static buffer safe here? What about queries in other threads? Do you have pointer to doc why this is needed, I cannot seem to find any explanation.. It's...