On 1/18/16, Domingo Alvarez Duarte <sqlite-mail at dev.dadbiz.es> wrote:
> Hello Richard !
>
> Can we have a sqlite function that given a sql string return something like
> this https://codeschool.github.io/sqlite-parser/demo/ =>
>
> Syntax Tree ?

No.

That would make the abstract syntax tree an interface, which means
that we would not be able to refactor it in the future without
breaking backwards compatibility.  We do not change the AST format
often, but it does happen.  And we want the continued freedom to
further modify the AST without having to think about what applications
those changes might break.

-- 
D. Richard Hipp
drh at sqlite.org

Reply via email to