definition: |
attr2CSymbol :: Attribute -> CExpr attr2CSymbol (Attribute _ adom _ _) = domain2CSymbol adom where domain2CSymbol :: Domain -> CExpr domain2CSymbol (IntDom _) = CSymbol (mConn, "SQLTypeInt") domain2CSymbol (FloatDom _) = CSymbol (mConn, "SQLTypeFloat") domain2CSymbol (CharDom _) = CSymbol (mConn, "SQLTypeChar") domain2CSymbol (StringDom _) = CSymbol (mConn, "SQLTypeString") domain2CSymbol (BoolDom _) = CSymbol (mConn, "SQLTypeBool") domain2CSymbol (DateDom _) = CSymbol (mConn, "SQLTypeDate") domain2CSymbol (KeyDom _) = CSymbol (mConn, "SQLTypeInt") |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
-- Translates an attribute type into a symbol used in an entity description. |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({Attribute}) |-> {CSymbol}} |
name: |
attr2CSymbol |
precedence: |
no precedence defined |
result-values: |
{CSymbol} |
signature: |
Database.ERD.Attribute -> AbstractCurry.Types.CExpr |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
possibly non-reducible on same data term |