vote up 3 vote down star
1

Is there a good open-source Java library for parsing SQL statements?

If possible, it should be customizable or flexible enough to also be able to parse (or at least ignore) vendor-specific syntax (such as Oracle tablespace definitions or MySQL's LIMIT clause).

If not, strict adherence to the SQL standard is also fine.

Update: I need this for two things:

  • providing an SQL interface to a non-SQL database (mapping to internal API calls)
  • rewriting SQL before it goes to the actual database (e.g. Oracle)
flag

51% accept rate

5 Answers

vote up 1 vote down

JSqlParser

link|flag
vote up -1 vote down

jparsec

link|flag
vote up 2 vote down

Parser

If you need a parser there should be a parser in the code base of Apache Derby.

Dealing with vendor-specific SQL

You may want to look at the .native() method on the jdbc Connection object which you can pass it vendor neutral queries that will get postprocessed into vendor specific queries.

link|flag
That native() method looks interesting. Are there any examples as to how it can be used? What kind of conversions are possible there? – Thilo Mar 19 at 0:46
vote up 1 vote down

What you want to do with the parsed SQL? I can recommend a few Java implementation of Lex/Yacc (BYACC/J, Java Cup) that you can use an existing SQL grammar with.

If you want to actually do something with the resulting parsed grammar, I might suggest looking at Derby, an open source SQL database written in Java.

link|flag
vote up 2 vote down

ANTLR has an ANSI SQL grammar available. You can use that to create your own parser.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.