packages feed

sqlite-simple-errors 0.4.0.0 → 0.5.0.0

raw patch · 4 files changed

+31/−1 lines, 4 files

Files

sqlite-simple-errors.cabal view
@@ -1,5 +1,5 @@ name:                sqlite-simple-errors-version:             0.4.0.0+version:             0.5.0.0 synopsis:            Wrapper around errors from sqlite-simple description:         Wrapper around errors from sqlite-simple. Get easy-to-pattern-match                      data types for constraint errors.
src/Database/SQLite/SimpleErrors.hs view
@@ -1,3 +1,13 @@+{-|+Module      : Database.SQLite.SimpleErrors.Types+Description : Main module+Copyright   : (c) Joseph Canero, 2016+License     : BSD-3+Maintainer  : jmc41493@gmail.com+Stability   : experimental+Portability : POSIX+-}+ module Database.SQLite.SimpleErrors (   DatabaseResponse
src/Database/SQLite/SimpleErrors/Parser.hs view
@@ -1,3 +1,13 @@+{-|+Module      : Database.SQLite.SimpleErrors.Parser+Description : Parsing logic+Copyright   : (c) Joseph Canero, 2016+License     : BSD-3+Maintainer  : jmc41493@gmail.com+Stability   : experimental+Portability : POSIX+-}+ module Database.SQLite.SimpleErrors.Parser (   receiveSQLError
src/Database/SQLite/SimpleErrors/Types.hs view
@@ -1,3 +1,13 @@+{-|+Module      : Database.SQLite.SimpleErrors.Types+Description : Types+Copyright   : (c) Joseph Canero, 2016+License     : BSD-3+Maintainer  : jmc41493@gmail.com+Stability   : experimental+Portability : POSIX+-}+ {-# LANGUAGE DeriveDataTypeable #-}  module Database.SQLite.SimpleErrors.Types where