1
Fork 0

add support for ? for parameterized queries

This commit is contained in:
Jake Wheat 2013-12-19 10:44:20 +02:00
commit b68c116839
5 changed files with 18 additions and 0 deletions
Language/SQL/SimpleSQL

View file

@ -115,6 +115,7 @@
> -- | in list literal and in subquery, if the bool is false it
> -- means not in was used ('a not in (1,2)')
> | In Bool ScalarExpr InPredValue
> | Parameter -- ^ Represents a ? in a parameterized query
> deriving (Eq,Show,Read)
> -- | Represents an identifier name, which can be quoted or unquoted.