hasql/library/Hasql/Connection.hs

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