hsql-1.8.2: Database access from Haskell.
DB.HSQL.Core
Description
Management of handles and exception handling.
Synopsis
closeHandleSource
Arguments
closing state ref
DB action to do if not closed
if closed, no action.
checkHandleSource
if closed, throws SqlClosedHandle exception.
SqlClosedHandle
sqlExceptionsSource
the exception thinc to be cast
Casts, if possible, an Exception to an SqlError.
Exception
SqlError
catchSql :: IO a -> (SqlError -> IO a) -> IO aSource
Deprecated: Use Control.Exception.catch instead.
Deprecated: Use catch instead.
catch
handleSql :: (SqlError -> IO a) -> IO a -> IO aSource
Deprecated: Use Control.Exception.handle instead.
Deprecated: Use handle instead.
handle