opaleye-0.7.0.0: src/Opaleye.hs
-- | An SQL-generating DSL targeting PostgreSQL. Allows Postgres
-- queries to be written within Haskell in a typesafe and composable
-- fashion.
--
-- You might like to look at
--
-- * <https://github.com/tomjaguarpaw/haskell-opaleye/blob/master/Doc/Tutorial/TutorialBasic.lhs Basic tutorial>
--
-- * <https://github.com/tomjaguarpaw/haskell-opaleye/blob/master/Doc/Tutorial/TutorialManipulation.lhs Manipulation tutorial>
--
-- * <https://github.com/tomjaguarpaw/haskell-opaleye/blob/master/Doc/Tutorial/TutorialAdvanced.lhs Advanced tutorial>
--
-- * If you are confused about the @Default@ typeclass, then
-- the <https://github.com/tomjaguarpaw/haskell-opaleye/blob/master/Doc/Tutorial/DefaultExplanation.lhs Default explanation>
module Opaleye ( module Opaleye.Adaptors
, module Opaleye.Aggregate
, module Opaleye.Binary
, module Opaleye.Column
, module Opaleye.Internal.Constant
, module Opaleye.Distinct
, module Opaleye.Field
, module Opaleye.FunctionalJoin
, module Opaleye.Join
, module Opaleye.Label
, module Opaleye.Lateral
, module Opaleye.Manipulation
, module Opaleye.MaybeFields
, module Opaleye.Operators
, module Opaleye.Order
, module Opaleye.Internal.PGTypesExternal
, module Opaleye.QueryArr
, module Opaleye.RunQuery
, module Opaleye.RunSelect
, module Opaleye.Sql
, module Opaleye.Select
, module Opaleye.SqlTypes
, module Opaleye.Table
, module Opaleye.ToFields
, module Opaleye.Values
) where
import Opaleye.Adaptors
import Opaleye.Aggregate
import Opaleye.Binary
import Opaleye.Column
import Opaleye.Internal.Constant
hiding (toFields)
import Opaleye.Distinct
import Opaleye.Field
hiding (null,
isNull,
matchNullable,
fromNullable,
toNullable,
maybeToNullable)
import Opaleye.FunctionalJoin
import Opaleye.Join
hiding (optional)
import Opaleye.Label
import Opaleye.Lateral
import Opaleye.Manipulation
import Opaleye.MaybeFields
hiding (optional)
import Opaleye.Operators
import Opaleye.Order
import Opaleye.Internal.PGTypesExternal
import Opaleye.QueryArr
import Opaleye.RunQuery
import Opaleye.RunSelect
hiding (foldForward,
closeCursor,
declareCursor,
declareCursorExplicit)
import Opaleye.Select
import Opaleye.Sql
import Opaleye.SqlTypes
import Opaleye.Table
import Opaleye.ToFields
import Opaleye.Values