mirror of
https://github.com/khibino/haskell-relational-record.git
synced 2024-12-12 12:09:08 +03:00
48 lines
1.7 KiB
Plaintext
48 lines
1.7 KiB
Plaintext
|
|
name: relational-query-HDBC
|
|
version: 0.0.1.0
|
|
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.
|
|
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
|
|
default-language: Haskell2010
|
|
|
|
exposed-modules:
|
|
Database.HDBC.Record.Persistable
|
|
Database.HDBC.Record.Singleton
|
|
Database.HDBC.Record.TH
|
|
Database.HDBC.Record.Query
|
|
Database.HDBC.TH
|
|
Database.HDBC.SqlValueExtra
|
|
Database.HDBC.Schema.Driver
|
|
Database.HDBC.Schema.IBMDB2
|
|
Database.HDBC.Schema.PostgreSQL
|
|
|
|
other-modules:
|
|
Database.HDBC.Record.InternalTH
|
|
|
|
build-depends: base <5
|
|
, containers
|
|
, convertible
|
|
, template-haskell
|
|
, names-th
|
|
, DB-record
|
|
, relational-join
|
|
, HDBC >=2
|
|
, HDBC-session
|
|
hs-source-dirs: src
|
|
ghc-options: -Wall
|