Skip to content

steveyen/sqld3

Repository files navigation

SQL parser in JavaScript

This project provides a PEG.js grammar for SQL syntax. Why? I wanted to properly parse SQL in JavaScript, knocking down yet another thing in that long list of things that will be reimplemented in JavaScript one day.

See the ./sql.pegjs file, or...

Unlike previous hand-coded attempts at SQL parsing in JavaScript, such as my previous http://code.google.com/p/trimpath/wiki/TrimQuery, the parsing here is grammar (PEG) based.

SQL syntax

The SQL syntax follows sqlite 3.7 documented syntax, specifically from...

See also

License

Apache 2.0 -- this was made for you and me.