-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Backend for the persistent library using postgresql. -- -- Based on the HDBC-postgresql package @package persistent-postgresql @version 0.2.0 -- | A postgresql backend for persistent. module Database.Persist.Postgresql withPostgresqlPool :: (MonadCatchIO m) => String -> Int -> (ConnectionPool -> m a) -> m a withPostgresqlConn :: (MonadCatchIO m) => String -> (Connection -> m a) -> m a