use of org.eclipse.scout.rt.server.jdbc.parsers.sql.SqlParserToken.Unparsed in project scout.rt by eclipse.
the class SqlFormatter method formatStatement.
private void formatStatement(Statement stm, FormatContext ctx) {
if (stm != null) {
for (IToken t : stm.getChildren()) {
if (t instanceof Statement) {
formatStatement((Statement) t, ctx);
} else if (t instanceof SingleStatement) {
formatSingleStatement((SingleStatement) t, ctx);
} else if (t instanceof BracketExpr) {
formatBracketExpr((BracketExpr) t, ctx);
} else if (t instanceof UnionToken) {
formatDefault(t, ctx);
ctx.println();
} else if (t instanceof Unparsed) {
ctx.println("*** UNPARSED ***");
formatDefault(t, ctx);
ctx.println();
} else {
formatDefault(t, ctx);
}
}
}
}
use of org.eclipse.scout.rt.server.jdbc.parsers.sql.SqlParserToken.Unparsed in project scout.rt by eclipse.
the class SqlParser method parse.
public Statement parse(String s) {
ParseContext ctx = new ParseContext();
List<IToken> list = tokenize(s, ctx);
Statement stm = parseStatement(list, ctx);
// sometimes sql is wrapped into brackets
if (stm == null) {
ctx = new ParseContext();
list = tokenize(s, ctx);
BracketExpr be = parseBracketExpr(list, ctx);
if (be != null) {
for (IToken t : be.getChildren()) {
if (t instanceof Statement) {
stm = (Statement) t;
break;
}
}
}
}
if (list.size() > 0) {
Unparsed up = new Unparsed();
up.setText(flatten(list));
if (stm == null) {
stm = new Statement();
}
stm.addChild(up);
}
return stm;
}
Aggregations