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.
-
persistent-postgresql Database.Persist.Postgresql Same as other similarly-named functions in this module, but takes callbacks for obtaining the server version (to work around an Amazon Redshift bug) and connection-specific tweaking (to change the schema).
-
persistent-postgresql Database.Persist.Postgresql Same as createPostgresqlPoolModifiedWithVersion, but takes a custom connection-creation function. The only time you should reach for this function is if you need to write custom logic for creating a connection to the database.
-
persistent-postgresql Database.Persist.Postgresql Same as createPostgresqlPool, but can be configured with PostgresConf and PostgresConfHooks.
-
persistent-postgresql Database.Persist.Postgresql Create a PostgreSQL connection pool which also exposes the raw connection. The raw counterpart to createPostgresqlPool.
-
persistent-postgresql Database.Persist.Postgresql The raw counterpart to createPostgresqlPoolModified.
-
persistent-postgresql Database.Persist.Postgresql The raw counterpart to createPostgresqlPoolModifiedWithVersion.
-
persistent-postgresql Database.Persist.Postgresql The raw counterpart to createPostgresqlPoolWithConf.
defaultPostgresConfHooks :: PostgresConfHookspersistent-postgresql Database.Persist.Postgresql Default settings for PostgresConfHooks. See the individual fields of PostgresConfHooks for the default values.
rawPostgresqlConnection :: RawPostgresql backend -> Connectionpersistent-postgresql Database.Persist.Postgresql The underlying Connection
-
persistent-postgresql Database.Persist.Postgresql Same as withPostgresqlPool, but instead of opening a pool of connections, only one connection is opened. The provided action should use runSqlConn and *not* runReaderT because the former brackets the database action with transaction begin/commit.