haskelldb-hdbc-odbc-2.1.2: HaskellDB support for the HDBC ODBC driver.

Portabilityportable
Stabilityexperimental
Maintainerhaskelldb-users@lists.sourceforge.net
Safe HaskellNone

Database.HaskellDB.HDBC.ODBC

Description

 

Synopsis

Documentation

odbcConnect :: MonadIO m => SqlGenerator -> [(String, String)] -> (Database -> m a) -> m aSource

data DriverInterface

Interface which drivers should implement. The connect function takes some driver specific name, value pairs use to setup the database connection, and a database action to run. requiredOptions lists all required options with a short description, that is printed as help in the DBDirect program.

Constructors

DriverInterface 

Fields

connect :: forall m a. MonadIO m => [(String, String)] -> (Database -> m a) -> m a
 
requiredOptions :: [(String, String)]
 

driver :: DriverInterfaceSource

This driver passes its options through to HDBC.