@hackage postgresql-simple-named0.0.0.0

Implementation of named parameters for `postgresql-simple` library

Implementation of named parameters for postgresql-simple library.

Here is an exaple of how it could be used in your code:

queryNamed [sql|
    SELECT *
    FROM table
    WHERE foo = ?foo
      AND bar = ?bar
      AND baz = ?foo
|] [ "foo" =? "fooBar"
   , "bar" =? "barVar"
   ]