1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
{- |
Module : Database.HDBC.ColTypes
Copyright : Copyright (C) 2006-2011 John Goerzen
License : BSD3
Maintainer : John Goerzen <jgoerzen@complete.org>
Stability : provisional
Portability: portable
Definitions of, and utilities for, specifying what type of data is represented
by a column.
Written by John Goerzen, jgoerzen\@complete.org
-}
{-# LANGUAGE DeriveDataTypeable #-}
module Database.HDBC.ColTypes (SqlColDesc(..),
SqlTypeId(..),
SqlInterval(..)
)
where
import Data.Dynamic
{- | The description of a column.
Fields are Nothing if the database backend cannot supply the
requested information.
The colSize field works like this:
For character types, the maximum width of the column. For numeric
types, the total number of digits allowed. See the ODBC manual for more.
The colOctetLength field is defined for character and binary types, and
gives the number of bytes the column requires, regardless of encoding.
-}
data SqlColDesc =
SqlColDesc {
colType :: SqlTypeId -- ^ Type of data stored here
,colSize :: Maybe Int -- ^ The size of a column
,colOctetLength :: Maybe Int -- ^ The maximum size in octets
,colDecDigits :: Maybe Int -- ^ Digits to the right of the period
,colNullable :: Maybe Bool -- ^ Whether NULL is acceptable
}
deriving (Eq, Read, Show, Typeable)
{- | The type identifier for a given column.
This represents the type of data stored in the column in the underlying
SQL engine. It does not form the entire column type; see 'SqlColDesc' for
that.
These types correspond mainly to those defined by ODBC. -}
data SqlTypeId =
SqlCharT -- ^ Fixed-width character strings
| SqlVarCharT -- ^ Variable-width character strings
| SqlLongVarCharT -- ^ Variable-width character strings, max length implementation dependant
| SqlWCharT -- ^ Fixed-width Unicode strings
| SqlWVarCharT -- ^ Variable-width Unicode strings
| SqlWLongVarCharT -- ^ Variable-width Unicode strings, max length implementation dependant
| SqlDecimalT -- ^ Signed exact values
| SqlNumericT -- ^ Signed exact integer values
| SqlSmallIntT -- ^ 16-bit integer values
| SqlIntegerT -- ^ 32-bit integer values
| SqlRealT
| SqlFloatT -- ^ Signed inexact floating-point values
| SqlDoubleT -- ^ Signed inexact double-precision values
| SqlBitT -- ^ A single bit
| SqlTinyIntT -- ^ 8-bit integer values
| SqlBigIntT -- ^ 64-bit integer values
| SqlBinaryT -- ^ Fixed-length binary data
| SqlVarBinaryT -- ^ Variable-length binary data
| SqlLongVarBinaryT -- ^ Variable-length binary data, max length implementation dependant
| SqlDateT -- ^ A date
| SqlTimeT -- ^ A time, no timezone
| SqlTimeWithZoneT -- ^ A time, with timezone
| SqlTimestampT -- ^ Combined date and time, no timezone
| SqlTimestampWithZoneT -- ^ Combined date and time, with timezone
| SqlUTCDateTimeT -- ^ UTC date\/time
| SqlUTCTimeT -- ^ UTC time
| SqlIntervalT SqlInterval -- ^ A time or date difference
| SqlGUIDT -- ^ Global unique identifier
| SqlUnknownT String -- ^ A type not represented here; implementation-specific information in the String
deriving (Eq, Show, Read, Typeable)
{- | The different types of intervals in SQL. -}
data SqlInterval =
SqlIntervalMonthT -- ^ Difference in months
| SqlIntervalYearT -- ^ Difference in years
| SqlIntervalYearToMonthT -- ^ Difference in years+months
| SqlIntervalDayT -- ^ Difference in days
| SqlIntervalHourT -- ^ Difference in hours
| SqlIntervalMinuteT -- ^ Difference in minutes
| SqlIntervalSecondT -- ^ Difference in seconds
| SqlIntervalDayToHourT -- ^ Difference in days+hours
| SqlIntervalDayToMinuteT -- ^ Difference in days+minutes
| SqlIntervalDayToSecondT -- ^ Difference in days+seconds
| SqlIntervalHourToMinuteT -- ^ Difference in hours+minutes
| SqlIntervalHourToSecondT -- ^ Difference in hours+seconds
| SqlIntervalMinuteToSecondT -- ^ Difference in minutes+seconds
deriving (Eq, Show, Read, Typeable)
|