Copyright | Copyright (C) 2006-2011 John Goerzen |
---|---|
License | BSD3 |
Maintainer | John Goerzen <jgoerzen@complete.org> |
Stability | provisional |
Portability | portable |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Definitions of, and utilities for, specifying what type of data is represented by a column.
Written by John Goerzen, jgoerzen@complete.org
Synopsis
- data SqlColDesc = SqlColDesc {
- colType :: SqlTypeId
- colSize :: Maybe Int
- colOctetLength :: Maybe Int
- colDecDigits :: Maybe Int
- colNullable :: Maybe Bool
- data SqlTypeId
- = SqlCharT
- | SqlVarCharT
- | SqlLongVarCharT
- | SqlWCharT
- | SqlWVarCharT
- | SqlWLongVarCharT
- | SqlDecimalT
- | SqlNumericT
- | SqlSmallIntT
- | SqlIntegerT
- | SqlRealT
- | SqlFloatT
- | SqlDoubleT
- | SqlBitT
- | SqlTinyIntT
- | SqlBigIntT
- | SqlBinaryT
- | SqlVarBinaryT
- | SqlLongVarBinaryT
- | SqlDateT
- | SqlTimeT
- | SqlTimeWithZoneT
- | SqlTimestampT
- | SqlTimestampWithZoneT
- | SqlUTCDateTimeT
- | SqlUTCTimeT
- | SqlIntervalT SqlInterval
- | SqlGUIDT
- | SqlUnknownT String
- data SqlInterval
Documentation
data SqlColDesc Source #
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.
SqlColDesc | |
|
Instances
Eq SqlColDesc Source # | |
Defined in Database.HDBC.ColTypes (==) :: SqlColDesc -> SqlColDesc -> Bool # (/=) :: SqlColDesc -> SqlColDesc -> Bool # | |
Read SqlColDesc Source # | |
Defined in Database.HDBC.ColTypes readsPrec :: Int -> ReadS SqlColDesc # readList :: ReadS [SqlColDesc] # readPrec :: ReadPrec SqlColDesc # readListPrec :: ReadPrec [SqlColDesc] # | |
Show SqlColDesc Source # | |
Defined in Database.HDBC.ColTypes showsPrec :: Int -> SqlColDesc -> ShowS # show :: SqlColDesc -> String # showList :: [SqlColDesc] -> ShowS # |
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.
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 |
data SqlInterval Source #
The different types of intervals in SQL.
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 |
Instances
Eq SqlInterval Source # | |
Defined in Database.HDBC.ColTypes (==) :: SqlInterval -> SqlInterval -> Bool # (/=) :: SqlInterval -> SqlInterval -> Bool # | |
Read SqlInterval Source # | |
Defined in Database.HDBC.ColTypes readsPrec :: Int -> ReadS SqlInterval # readList :: ReadS [SqlInterval] # readPrec :: ReadPrec SqlInterval # readListPrec :: ReadPrec [SqlInterval] # | |
Show SqlInterval Source # | |
Defined in Database.HDBC.ColTypes showsPrec :: Int -> SqlInterval -> ShowS # show :: SqlInterval -> String # showList :: [SqlInterval] -> ShowS # |