2013-03-25 12:26:23 +04:00
|
|
|
|
2013-05-15 10:24:19 +04:00
|
|
|
name: relational-query-HDBC
|
2013-03-25 12:26:23 +04:00
|
|
|
version: 0.0.1.0
|
2013-05-15 10:24:19 +04:00
|
|
|
synopsis: HDBC instance of relational join and typed query for HDBC
|
|
|
|
description: This package contains HDBC instance of relational-join and
|
|
|
|
typed query for HDBC.
|
|
|
|
Generating Database table definitions and functions for
|
|
|
|
relational-join by reading table and index definitions
|
|
|
|
from Database system catalogs.
|
2013-03-25 12:26:23 +04:00
|
|
|
homepage: http://twitter.com/khibino
|
|
|
|
license: BSD3
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Kei Hibino
|
|
|
|
maintainer: ex8k.hibino@gmail.com
|
|
|
|
copyright: Copyright (c) 2013 Kei Hibino
|
|
|
|
category: Database
|
|
|
|
build-type: Simple
|
|
|
|
cabal-version: >=1.10
|
|
|
|
|
|
|
|
library
|
2013-03-27 13:25:37 +04:00
|
|
|
default-language: Haskell2010
|
2013-03-25 12:26:23 +04:00
|
|
|
|
2013-04-13 14:24:06 +04:00
|
|
|
exposed-modules:
|
2013-04-13 13:13:31 +04:00
|
|
|
Database.HDBC.Record.Persistable
|
2013-05-09 20:06:38 +04:00
|
|
|
Database.HDBC.Record.Singleton
|
2013-05-06 19:00:43 +04:00
|
|
|
Database.HDBC.Record.TH
|
2013-03-25 12:26:23 +04:00
|
|
|
Database.HDBC.Record.Query
|
|
|
|
Database.HDBC.TH
|
|
|
|
Database.HDBC.SqlValueExtra
|
|
|
|
Database.HDBC.Schema.Driver
|
|
|
|
Database.HDBC.Schema.IBMDB2
|
|
|
|
Database.HDBC.Schema.PostgreSQL
|
|
|
|
|
2013-05-15 09:15:35 +04:00
|
|
|
other-modules:
|
|
|
|
Database.HDBC.Record.InternalTH
|
|
|
|
|
2013-03-25 12:26:23 +04:00
|
|
|
build-depends: base <5
|
|
|
|
, containers
|
|
|
|
, convertible
|
2013-05-07 12:22:06 +04:00
|
|
|
, template-haskell
|
|
|
|
, names-th
|
2013-04-13 14:24:06 +04:00
|
|
|
, DB-record
|
2013-05-02 12:21:21 +04:00
|
|
|
, relational-join
|
2013-03-25 12:26:23 +04:00
|
|
|
, HDBC >=2
|
|
|
|
, HDBC-session
|
|
|
|
hs-source-dirs: src
|
2013-05-29 19:44:40 +04:00
|
|
|
ghc-options: -Wall
|