mirror of
https://github.com/khibino/haskell-relational-record.git
synced 2024-12-13 17:32:35 +03:00
faf91d14f5
Singleton wraped type like DB-record.
58 lines
2.0 KiB
Plaintext
58 lines
2.0 KiB
Plaintext
|
|
name: HDBC-schema-th
|
|
version: 0.0.1.0
|
|
synopsis: Database access template for HDBC using database system catalogs
|
|
description: This package contains template haskell functions to generate codes
|
|
correspond to Database table definitions and functions which read
|
|
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.PgCatalog.PgAttribute
|
|
Database.HDBC.Schema.PgCatalog.PgType
|
|
Database.HDBC.Schema.PostgreSQL
|
|
|
|
build-depends: base <5
|
|
, containers
|
|
, time
|
|
, convertible
|
|
, template-haskell
|
|
, names-th
|
|
, sql-words
|
|
, DB-record
|
|
, relational-join
|
|
, HDBC >=2
|
|
, HDBC-session
|
|
hs-source-dirs: src
|
|
|
|
Test-suite postgreSQL
|
|
Build-depends: HDBC-schema-th
|
|
, Cabal
|
|
, HDBC-postgresql
|
|
, bytestring
|
|
, text
|
|
|
|
Type: detailed-0.9
|
|
Test-module: PgTest
|
|
hs-source-dirs: pgTest
|
|
|