packages feed

typedquery 0.1.0.0 → 0.1.0.1

raw patch · 2 files changed

+12/−1 lines, 2 filesdep +haskell-src-extsdep +rawstring-qm

Dependencies added: haskell-src-exts, rawstring-qm

Files

README.md view
@@ -3,6 +3,9 @@  Parser for SQL augmented with types +Till it finalised I would recomend installing it: with `cabal -f debug-typed-queries` just to see what is gonig on. + As the SQL parser is not complete, and will need a major lift to make it readable and sane... however it works fine for all queries I need.+ This package provides base parsing facilities for possibly all *-simple database packages converting them into *-simpel-typed   * https://github.com/tolysz/mysql-simple-typed
typedquery.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/  name:                typedquery-version:             0.1.0.0+version:             0.1.0.1 synopsis:            Parser for SQL augmented with types description:         Base package for parsing queries homepage:            https://github.com/tolysz/typedquery@@ -16,12 +16,20 @@ extra-source-files:  README.md cabal-version:       >=1.10 +Flag debug-typed-queries+  Description: Enable debug support+  Default:     False+ library   exposed-modules:     Database.TypedQuery.SQL                        Database.TypedQuery.SQLParser                        Database.TypedQuery.Types   -- other-modules:          -- other-extensions:    +  if flag(debug-typed-queries)+    cpp-options: -DDEVELOPMENT+    build-depends: rawstring-qm+                 , haskell-src-exts   build-depends:       base >=4.7 && <4.8                ,       template-haskell                ,       haskell-src-meta