SQL tokeniser & parser


Keywords
sql, parser, tokenizer, ast
License
MIT
Install
npm install escuelle@0.0.11

Documentation

ESCUELLE (SQL)

This library contains an SQL parser that converts a query string into a structured object (AST).

Coverage Status Build Status

How to use it

  • Add it to you project with :
$ npm install escuelle --save
  • And use it into your code :
var sql_parser = require('escuelle');

console.log(
  sql_parser('SELECT * FROM your_table')
);