From dea53d45ad7019567a5257337ce0907382cf33d0 Mon Sep 17 00:00:00 2001 From: Ziv Date: Tue, 1 Mar 2022 16:59:34 +0800 Subject: [PATCH] docs: add discord channel --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ea7be50..48d20c3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # dt-sql-parser -[![NPM version][npm-image]][npm-url] [![NPM downloads][download-img]][download-url] +[![NPM version][npm-image]][npm-url] [![NPM downloads][download-img]][download-url] [![Chat][online-chat-img]][online-chat-url] English | [简体中文](./README-zh_CN.md) @@ -10,6 +10,10 @@ English | [简体中文](./README-zh_CN.md) [download-img]: https://img.shields.io/npm/dm/dt-sql-parser.svg?style=flat [download-url]: https://www.npmjs.com/package/dt-sql-parser +[online-chat-img]: https://img.shields.io/discord/920616811261743104?logo=Molecule +[online-chat-url]: https://discord.gg/uVvq6mfPfa + + dt-sql-parser is a **SQL Parser** project built with [ANTLR4](https://github.com/antlr/antlr4), and it's mainly for the **BigData** domain. The [ANTLR4](https://github.com/antlr/antlr4) generated the basic Parser, Visitor, and Listener, so it's easy to complete the **syntax validation**, **tokenizer**, **traverse** the AST, and so on features. Besides, it provides some helper methods, like **split** SQL, and filter the `--` and `/**/` types of comments in SQL.