module Hasql.Transaction.Config where import Hasql.Transaction.Private.Prelude data Mode = -- | -- Read-only. No writes possible. Read | -- | -- Write and commit. Write deriving (Show, Eq, Ord, Enum, Bounded) -- | -- For reference see -- . data IsolationLevel = ReadCommitted | RepeatableRead | Serializable deriving (Show, Eq, Ord, Enum, Bounded)