hasql/library/Hasql/Connection.hs

16 lines
319 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
2022-06-20 13:54:54 +03:00
( Connection,
ConnectionError (..),
acquire,
release,
Settings,
settings,
withLibPQConnection,
)
2015-12-21 16:45:10 +03:00
where
import Hasql.Private.Connection
import Hasql.Private.Settings