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 ...
I'm working on an application which stores data in tables, similar to an RDBMS. I'm looking for a way to let my users query this data using SQL. Ideally, ...
General SQL Parser (GSP) is a quite feature rich SQL parser (to the extent that I have played with it) that allows for modifying SQL statements in a robust way ...
Hi! thanks, I will check this. I have to txt files conating DML statements and i need to compare them - and to check which statements is in both files. the problem is, that they dont have to have the same string exactly matching (order can be different, spaces etc.) so i thought the easy will be to parse them into ...