JSqlParser使用

JSqlParser使用

什么是JSqlParser

JSqlParser 是一个 SQL 语句解析器。
它将 SQLs 转换为可遍历的 Java 类层次结构。

如何使用JSqlParser

1.添加依赖

<dependency>
	<groupId>com.github.jsqlparser</groupId>
	<artifactId>jsqlparser</artifactId>
	<version>4.2</version>
</dependency>

2.解析创建表sql

/**
    * jSqlParser解析创建表sql
    *
    * @param path
    * @return
    * @throws JSQLParserException
    */
private List<Table>  parseCreateTables(String path) throws JSQLParserException {
    String lines = FileUtil.readString(path, StandardCharsets.UTF_8);
    String[] stats = lines.split(";\n");

    List<Table> tables = Lists.newArrayList();
    Table currTable;
    for (String statement : stats) {
        if (replaceBr(statement).isEmpty()) {
            continue;
        }
        Statement parsed = CCJSqlParserUtil.parse(statement, null);
        if (parsed instanceof CreateTable) {
            CreateTable createTableParsed = (CreateTable) parsed;
            String tableName = replaceRightDot(createTableParsed.getTable().getName());

            Table table = new Table();
            table.tableName = tableName;
            tables.add(table);
            currTable = table;

            List<ColumnDefinition> columns = createTableParsed.getColumnDefinitions();
            for (ColumnDefinition column : columns) {
                String columnName = replaceRightDot(column.getColumnName());
                String columnType = column.getColDataType().getDataType();
                String columnComment = "";
                Boolean commentFound = false;
                for (String spec : column.getColumnSpecs()) {
                    if (commentFound) {
                        columnComment = replaceSymbol(spec, "'").trim();
                        break;
                    }
                    if ("COMMENT".equalsIgnoreCase(spec)) {
                        commentFound = true;
                    }
                }

                Field field = new Field();
                field.name = columnName;
                field.comment = columnComment;
                currTable.fields.add(field);
            }
        }

        System.out.println(tables);
    }
    return tables;
}

参考

JSqlParser github

JSqlParser wiki

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

FlyingZCC

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值