Hoogle Search
Within LTS Haskell 24.26 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
runBeamPostgres :: Connection -> Pg a -> IO abeam-postgres Database.Beam.Postgres No documentation available.
runBeamPostgresDebug :: (String -> IO ()) -> Connection -> Pg a -> IO abeam-postgres Database.Beam.Postgres No documentation available.
-
PostgreSQL support for the drifter schema migration tool Support for postgresql-simple Query migrations as well as arbitrary Haskell IO functions. Be sure to check the examples dir for a usage example.
CannotParsePostgres :: FilePath -> KeterExceptionketer Keter.Common No documentation available.
-
Launch a PostgreSQL database in docker using tmp-proc Demos how to use tmp-proc to run a PostgreSQL database in docker in a unittest.
-
tmp-proc-postgres System.TmpProc.Docker.Postgres Provides the capability to launch a Postgres database as a tmp proc. The constructor receives the names of the tables to be dropped on reset.
TmpPostgres :: [Text] -> TmpPostgrestmp-proc-postgres System.TmpProc.Docker.Postgres No documentation available.
package
wai-session-postgresql PostgreSQL backed Wai session store Provides a PostgreSQL backed session store for the Network.Wai.Session interface.
-
wai-session-postgresql Network.Wai.Session.PostgreSQL By default, you pass a postgresql connection to the session store when creating it. The passed connection will have to stay open for the (possibly very long) existence of the session and it should not be used for any other purpose during that time. You can implement an instance of this class for a connection pool instead, so that the session manager will not require a permanent open PostgreSQL connection.
withPostgreSQLConn :: WithPostgreSQLConn a => a -> (Connection -> IO b) -> IO bwai-session-postgresql Network.Wai.Session.PostgreSQL Call the function (Connection -> IO b) with a valid and open PostgreSQL connection.