File tree Expand file tree Collapse file tree 1 file changed +16
-18
lines changed Expand file tree Collapse file tree 1 file changed +16
-18
lines changed Original file line number Diff line number Diff line change 88
99sql grammar follows https://dev.mysql.com/doc/refman/5.7/en/select.html
1010
11-
12- ## TODO
13-
14- - ${value} like value place holder support.
15- - benchmark
16-
17- ## unsupport currently
18-
19- - Hexadecimal Literals as x'01af' X'01af', but 0x01af is supported.
20- - keyword COLLATE.
21- - parammarker: keyword PREPARE / EXECUTE / DEALLOCATE
22- - variable: keyword SET / CREATE PROCEDURE / CREATE FUNCTION
23- - identifier expr: ODBC escape syntax
24- - matchexpr: Full-Text Search Functions. // to support
25- - intervalexpr: Date INTERVAL keyword. // to support
26- - into outfile: INTO OUTFILE keyword. // to support
27-
2811## commonjs usage
2912
3013` npm install --save js-sql-parser `
@@ -52,10 +35,25 @@ var ast = sqlParser.parse('select * from dual');
5235var sql = sqlParser .stringify (ast);
5336```
5437
55- ## AMD support
38+ ## AMD supported
5639
5740...
5841
42+ ## unsupported grammar currently
43+
44+ - Hexadecimal Literals as x'01af' X'01af', but 0x01af is supported.
45+ - keyword COLLATE.
46+ - parammarker: keyword PREPARE / EXECUTE / DEALLOCATE
47+ - variable: keyword SET / CREATE PROCEDURE / CREATE FUNCTION
48+ - identifier expr: ODBC escape syntax
49+ - matchexpr: Full-Text Search Functions. // to support
50+ - intervalexpr: Date INTERVAL keyword. // to support
51+ - into outfile: INTO OUTFILE keyword. // to support
52+
53+ ## TODO
54+
55+ - ${value} like value place holder support.
56+
5957## LICENSE
6058
6159MIT
You can’t perform that action at this time.
0 commit comments