hasql-pool-0.7: A pool of connections for Hasql
Safe HaskellNone
LanguageHaskell2010

Hasql.Pool

Synopsis

Documentation

data Pool Source #

A pool of connections to DB.

acquire :: Int -> Settings -> IO Pool Source #

Given the pool-size and connection settings create a connection-pool.

release :: Pool -> IO () Source #

Release all the connections in the pool.

data UsageError Source #

A union over the connection establishment error and the session error.

Instances

Instances details
Eq UsageError Source # 
Instance details

Defined in Hasql.Pool

Show UsageError Source # 
Instance details

Defined in Hasql.Pool

use :: Pool -> Session a -> IO (Either UsageError a) Source #

Use a connection from the pool to run a session and return the connection to the pool, when finished.