peg-sql-parser / sqld3

SQL parser in javascript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

SQL parser in javascript

License:Other


Languages

Language:JavaScript 97.6%Language:Ruby 2.4%