-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Description
SQL Example
@Test
public void test4() throws ParseException, JSQLParserException {
String orginalSql = "SELECT * FROM PMS_ROLE_SCALE where ROLE_ID= ? /*if*/\n" +
" and code_id= ? /*if*/ \n" +
"/*if*/\n" +
" and SCALE_FLAG=?/*if*/\n" +
"/*if*/\n" +
" and PMS_TYPE=?/*if*/";
Statement statement = CCJSqlParserUtil.parse(orginalSql);
String parsedSql = statement.toString();
log.info("==> JsqlParser SQL: {}", parsedSql);
}
I want to keep the comments
I use these comments as placeholders. Since I want to replace these comments after Jsqlparser finishes parsing, I hope that they can still be retained after parsing.
Is there any way to use it? Or is there a better solution?
Also,JSqlParser is a near-perfect work. I often use it in my projects and I love it very much.
Metadata
Metadata
Assignees
Labels
No labels