relational-record-examples-0.5.0.0: Examples of Haskell Relationa Record

Safe HaskellNone
LanguageHaskell2010

Account

Documentation

data Account Source #

Instances

Show Account Source # 
Generic Account Source # 

Associated Types

type Rep Account :: * -> * #

Methods

from :: Account -> Rep Account x #

to :: Rep Account x -> Account #

PersistableWidth Account Source # 
TableDerivable Account Source # 
ShowConstantTermsSQL Account Source # 
FromSql SqlValue Account Source # 
ToSql SqlValue Account Source # 
HasColumnConstraint NotNull Account Source # 
HasColumnConstraint Primary Account Source # 
HasKeyConstraint Primary Account Source # 
HasConstraintKey Primary Account Int Source # 
HasProjection "accountId" Account Int Source # 

Methods

projection :: PiLabel "accountId" -> Pi Account Int #

HasProjection "custId" Account Int Source # 

Methods

projection :: PiLabel "custId" -> Pi Account Int #

HasProjection "openDate" Account Day Source # 

Methods

projection :: PiLabel "openDate" -> Pi Account Day #

HasProjection "productCd" Account String Source # 

Methods

projection :: PiLabel "productCd" -> Pi Account String #

HasProjection "status" Account String Source # 

Methods

projection :: PiLabel "status" -> Pi Account String #

HasProjection "availBalance" Account (Maybe Double) Source # 

Methods

projection :: PiLabel "availBalance" -> Pi Account (Maybe Double) #

HasProjection "closeDate" Account (Maybe Day) Source # 

Methods

projection :: PiLabel "closeDate" -> Pi Account (Maybe Day) #

HasProjection "lastActivityDate" Account (Maybe Day) Source # 

Methods

projection :: PiLabel "lastActivityDate" -> Pi Account (Maybe Day) #

HasProjection "openBranchId" Account (Maybe Int) Source # 

Methods

projection :: PiLabel "openBranchId" -> Pi Account (Maybe Int) #

HasProjection "openEmpId" Account (Maybe Int) Source # 

Methods

projection :: PiLabel "openEmpId" -> Pi Account (Maybe Int) #

HasProjection "pendingBalance" Account (Maybe Double) Source # 

Methods

projection :: PiLabel "pendingBalance" -> Pi Account (Maybe Double) #

ProductConstructor (Int -> String -> Int -> Day -> Maybe Day -> Maybe Day -> String -> Maybe Int -> Maybe Int -> Maybe Double -> Maybe Double -> Account) Source # 
type Rep Account Source #