Copyright | 2013 Kei Hibino |
---|---|
License | BSD3 |
Maintainer | ex8k.hibino@gmail.com |
Stability | experimental |
Portability | unknown |
Safe Haskell | None |
Language | Haskell2010 |
This module implements queries to get table schema and table constraint informations from system catalog of PostgreSQL.
- type Column = (PgAttribute, PgType)
- normalizeColumn :: String -> String
- notNull :: Column -> Bool
- getType :: Map String TypeQ -> Column -> Maybe (String, TypeQ)
- columnQuerySQL :: Query (String, String) Column
- primaryKeyLengthQuerySQL :: Query (String, String) Int32
- primaryKeyQuerySQL :: Int32 -> Query (String, String) String
Documentation
type Column = (PgAttribute, PgType) Source
Type to represent Column information.
normalizeColumn :: String -> String Source
Normalize column name string to query PostgreSQL system catalog.
:: Map String TypeQ | Type mapping specified by user |
-> Column | Column info in system catalog |
-> Maybe (String, TypeQ) | Result normalized name and mapped Haskell type |
Get column normalized name and column Haskell type.