JSqlParser能够解析SQL语句并它翻译成一个Java类层次。它产生的层次可以使用访问者模式导航。
示例代码:
if (statement instanceof Insert) { // insert case } else if (statement instanceof Update) { // update case }