2014-12-12 05:37:29 +03:00
|
|
|
name: relational-record-examples
|
|
|
|
version: 0.1.0.0
|
|
|
|
synopsis: Examples of Haskell Relationa Record
|
|
|
|
description: Provides examples of Haskell Relational Record
|
|
|
|
license: BSD3
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Kazu Yamamoto <kazu@iij.ad.jp>
|
|
|
|
Shohei Murayama <shohei.murayama@gmail.com>
|
|
|
|
maintainer: Shohei Murayama <shohei.murayama@gmail.com>
|
|
|
|
category: Database
|
|
|
|
build-type: Simple
|
|
|
|
cabal-version: >=1.10
|
|
|
|
|
2014-12-12 06:18:58 +03:00
|
|
|
executable examples
|
2014-12-12 05:37:29 +03:00
|
|
|
hs-source-dirs: src
|
2014-12-12 06:18:58 +03:00
|
|
|
main-is: Examples.hs
|
|
|
|
other-modules: Account
|
2014-12-12 05:37:29 +03:00
|
|
|
Branch
|
|
|
|
Business
|
|
|
|
Customer
|
|
|
|
DataSource
|
|
|
|
Department
|
|
|
|
Employee
|
|
|
|
Individual
|
|
|
|
Officer
|
|
|
|
Product
|
|
|
|
ProductType
|
|
|
|
Transaction
|
|
|
|
build-depends: base <5
|
|
|
|
, HDBC
|
|
|
|
, HDBC-session
|
|
|
|
, HDBC-sqlite3
|
2014-12-12 06:18:58 +03:00
|
|
|
, names-th
|
2014-12-12 05:37:29 +03:00
|
|
|
, persistable-record
|
|
|
|
, relational-query
|
|
|
|
, relational-query-HDBC
|
2014-12-12 06:18:58 +03:00
|
|
|
, template-haskell
|
|
|
|
, time
|
2014-12-12 05:37:29 +03:00
|
|
|
default-language: Haskell2010
|
|
|
|
|