Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Synopsis
- data ParseErrorResult
- parseError :: (Integral a, Show a) => a -> ParseErrorResult
- c'SQLITE_VERSION :: String
- c'SQLITE_VERSION_NUMBER :: Integral a => a
- c'SQLITE_SOURCE_ID :: String
- c'SQLITE_STATIC :: Integral a => a
- c'SQLITE_TRANSIENT :: Integral a => a
- data SQLData
- flagsToInt :: OpenFlags -> CInt
- cacheModeToInt :: CacheMode -> CInt
- threadModeToInt :: ThreadMode -> CInt
- writeModeToInt :: WriteMode -> CInt
- convertCColumnType :: Integral a => a -> Maybe SQLData
Documentation
data ParseErrorResult Source #
ParseErrorOk | There was no error |
ParseErrorStep StepResult | A StepResult was found. |
ParseErrorError ErrorFlag | An error code was found. |
ParseErrorNotFound | The error code was not found. |
Instances
Eq ParseErrorResult Source # | |
Defined in Squeather.Internal.Bindings (==) :: ParseErrorResult -> ParseErrorResult -> Bool # (/=) :: ParseErrorResult -> ParseErrorResult -> Bool # | |
Ord ParseErrorResult Source # | |
Defined in Squeather.Internal.Bindings compare :: ParseErrorResult -> ParseErrorResult -> Ordering # (<) :: ParseErrorResult -> ParseErrorResult -> Bool # (<=) :: ParseErrorResult -> ParseErrorResult -> Bool # (>) :: ParseErrorResult -> ParseErrorResult -> Bool # (>=) :: ParseErrorResult -> ParseErrorResult -> Bool # max :: ParseErrorResult -> ParseErrorResult -> ParseErrorResult # min :: ParseErrorResult -> ParseErrorResult -> ParseErrorResult # | |
Show ParseErrorResult Source # | |
Defined in Squeather.Internal.Bindings showsPrec :: Int -> ParseErrorResult -> ShowS # show :: ParseErrorResult -> String # showList :: [ParseErrorResult] -> ShowS # |
parseError :: (Integral a, Show a) => a -> ParseErrorResult Source #
c'SQLITE_VERSION_NUMBER :: Integral a => a Source #
c'SQLITE_STATIC :: Integral a => a Source #
c'SQLITE_TRANSIENT :: Integral a => a Source #
Various types of SQL data; used both when obtaining query results and when providing named parameters.
flagsToInt :: OpenFlags -> CInt Source #
cacheModeToInt :: CacheMode -> CInt Source #
threadModeToInt :: ThreadMode -> CInt Source #
writeModeToInt :: WriteMode -> CInt Source #