Reputation: 333
I need parser on java that parse SQL and return it as some structure. This structure must have some binding point to what I can bind low level reader.
Upvotes: 1
Views: 1327
Reputation: 483
How about parse sql and then generate XML output with query structure information. then you can use this XML which including SQL parse tree for further investigation.
Upvotes: 0