aglo / MySQLParser

A Parser for MySQL's SQL.
3 stars 6 forks source link

Visualized mysql grammar tree #9

Open wenzong opened 11 years ago

wenzong commented 11 years ago

Not work yet

Dot language

dot filename.dot -Tpng -o filename.png

S-expr

(a 
    b
    (c  d  e))

lisp2dot

digraph G{
    a->b;
    a->c;
    c->d;
    c->e;
}