Update haddocks.

This commit is contained in:
Kei Hibino 2015-11-10 18:03:06 +09:00
parent 7548122a4c
commit 1e97eee0a6
4 changed files with 19 additions and 0 deletions

View File

@ -1,6 +1,15 @@
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE MultiParamTypeClasses #-}
-- |
-- Module : Database.HDBC.Schema.MySQL
-- Copyright : 2013 Sho KURODA
-- License : BSD3
--
-- Maintainer : krdlab@gmail.com
-- Stability : experimental
-- Portability : unknown
module Database.HDBC.Schema.MySQL
(
driverMySQL

View File

@ -1,6 +1,14 @@
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# LANGUAGE TemplateHaskell, MultiParamTypeClasses #-}
-- |
-- Module : Database.HDBC.Schema.MySQL
-- Copyright : 2013 Shohei Yasutake
-- License : BSD3
--
-- Maintainer : amutake.s@gmail.com
-- Stability : experimental
-- Portability : unknown
module Database.HDBC.Schema.Oracle
( driverOracle
) where

View File

@ -89,6 +89,7 @@ getColumns' tmap conn lchan scm tbl = maybeIO ([], []) id $ do
types <- mapM getType' rows
return (types, notNullIdxs)
-- | Driver implementation
driverSQLServer :: IConnection conn => Driver conn
driverSQLServer =
emptyDriver { getFieldsWithMap = getColumns' }

View File

@ -107,6 +107,7 @@ getColumns' tmap conn lchan scm tbl = maybeIO ([], []) id $ do
types <- mapM getType' rows
return (types, notNullIdxs)
-- | Driver implementation
driverSQLite3 :: IConnection conn => Driver conn
driverSQLite3 =
emptyDriver { getFieldsWithMap = getColumns' }