- Notifications
You must be signed in to change notification settings - Fork689
Mathias Rangel Wulff edited this pageJul 11, 2015 ·1 revision
You can use AlaSQL to parse to AST and compile SQL statements:
// Parse to ASTvarast=alasql.parse("SELECT * FROM one");console.log(ast.toString());// Print restored SQL statement// Compile to JavaScript function with or without parametersvarstatement=alasql.compile("SELECT * FROM one WHERE a > ? AND b < ?");statement([1,5]);
AlaSQL uses wonderfulJison parser to produce AST-tree.
© 2014-2026,Andrey Gershun &Mathias Rangel Wulff
Please help improve the documentation by opening a PR on thewiki repo