packages feed

pg-0.5.2.1: src/Database/PostgreSQL/Simple.hs-boot

module Database.PostgreSQL.Simple
     ( Connection
     , Query
     , query
     , query_
     , execute
     , execute_
     , executeMany
     ) where

import Data.Int(Int64)
import Database.PostgreSQL.Simple.Internal
import Database.PostgreSQL.Simple.Types
import {-# SOURCE #-} Database.PostgreSQL.Simple.FromRow
import {-# SOURCE #-} Database.PostgreSQL.Simple.ToRow

query :: (ToRow q, FromRow r) => Connection -> Query -> q -> IO [r]

query_ :: FromRow r => Connection -> Query -> IO [r]

execute :: ToRow q => Connection -> Query -> q -> IO Int64

executeMany :: ToRow q => Connection -> Query -> [q] -> IO Int64