-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Home
JSqlParser parses one or more SQL statements. Then the result can be accessed in a structured way. The generated Java class hierarchy can be navigated using the Visitor Pattern.
To help JSqlParsers development you are encouraged to provide
- feedback
- bugreports
- pull requests for new features
- improvement requests
Also I would like to know about needed examples or documentation stuff.
#Modifications JSqlParser is continuously improved. All modifications could be followed at the Release Notes. Additional News can be found here.
Modifications before GitHubs release tagging are listed in the [Older Releases](Older Releases) page.
The parser is built using JavaCC. The core JavaCC grammar for SQL has been taken from Guido Draheim's site and has been changed in order to produce a hierarchy of Java classes. The classes called deparsers are used to build again the SQL text of the class hierarchy.
Over the time the grammar was extended and now is a combination of specialities of grammars of various database systems. So some (not all) Oracle, MySql, SQLServer, PostgreSQL specific aspects can be parsed.
To use JSqlParser in a maven project you have to include the following dependency:
<dependency>
<groupId>com.github.jsqlparser</groupId>
<artifactId>jsqlparser</artifactId>
<version>0.9</version>
</dependency>
Be sure you added the latest release.
Find some examples of JSqlParsers usage.
Feel free to provide more examples.