-- 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.6.1 -- | A postgresql backend for persistent. module Database.Persist.Postgresql withPostgresqlPool :: MonadControlIO m => Text -> Int -> (ConnectionPool -> m a) -> m a withPostgresqlConn :: MonadControlIO m => Text -> (Connection -> m a) -> m a -- | Information required to connect to a postgres database data PostgresConf PostgresConf :: Text -> Int -> PostgresConf pgConnStr :: PostgresConf -> Text pgPoolSize :: PostgresConf -> Int instance PersistConfig PostgresConf