hasql/library/Hasql/Connection.hs

17 lines
303 B
Haskell
Raw Normal View History

2015-12-21 16:45:10 +03:00
-- |
-- This module provides a low-level effectful API dealing with the connections to the database.
module Hasql.Connection
(
Connection,
2015-12-23 14:23:39 +03:00
ConnectionError(..),
2015-12-21 16:45:10 +03:00
acquire,
release,
2015-12-23 15:07:14 +03:00
Settings,
settings,
withLibPQConnection
2015-12-21 16:45:10 +03:00
)
where
import Hasql.Private.Connection
import Hasql.Private.Settings