postgresql-typed icon indicating copy to clipboard operation
postgresql-typed copied to clipboard

Haskell PostgreSQL library with compile-time type inference

Results 9 postgresql-typed issues
Sort by recently updated
recently updated
newest added

More documentation on how to run schema and data migrations would be helpful (e.g. to achieve a similar workflow as [postgresql-simple-migration](https://github.com/ameingast/postgresql-simple-migration)

Haskell newbie trying to understand how I can get [this to work](https://stackoverflow.com/q/75100258/5723098). I have a record defined like this: ```haskell data EmailConfig = EmailConfig { id :: UUID, fromName ::...

As far as I can tell, this library currently has no support for the newer SCRAM-SHA-256 authentication method, which is more secure than MD5. Are there any plans to support...

Hi! I see that the current version of the project already depends on `postgresql-binary`, and I wonder to what extent it could integrate with hasql Connections and Sessions. As my...

I use `postgresql-typed` in one of my projects. When used with stack, it works perfectly, but when I tried to migrate to `nix`, it seems to be broken. The package...

Hey, this is a a pretty mad idea but also really cool. The only thing that's not great is composability - e.g. adding a `WHERE` restriction at the end requires...

I've gotten to the point where I'd like to store a list-of-lists (`[(StrictText,StritctText)]` -> `TEXT[][]`), but then I stumbled across the sad comment that multidimensional arrays are not currently supported....

Is it possible to use this library to receive asynchronous notifications from the database server? I'm currently using [postgresql-simple's Notification](https://hackage.haskell.org/package/postgresql-simple-0.5.3.0/docs/Database-PostgreSQL-Simple-Notification.html) just for this functionality as I couldn't find a way...

First, this is an amazing project! Thanks so much for maintaining it. Something I get nervous about is accidentally putting the right type of Haskell data into the wrong column...