| Copyright | Jean Carlo Giambastiani Lopes 2017 |
|---|---|
| License | MIT |
| Stability | experimental |
| Safe Haskell | Safe |
| Language | Haskell2010 |
Language.Sql.AST.Tree
Description
A SQL parser implementation of the minimum required for a ODBC driver.
Documentation
class Code a => AST a where Source #
Minimal complete definition
Methods
forest :: a -> Forest String Source #
tree :: a -> Tree String Source #
leaf :: String -> a -> Tree String Source #
Instances