All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.baomidou.mybatisplus.extension.ddl.history.IDdlGenerator Maven / Gradle / Ivy

There is a newer version: 3.5.7
Show newest version
/*
 * Copyright (c) 2011-2023, baomidou ([email protected]).
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.baomidou.mybatisplus.extension.ddl.history;

import java.util.function.Function;

/**
 * DDL 生成器接口
 *
 * @author hubin
 * @since 2021-06-22
 */
public interface IDdlGenerator {

    /**
     * 表是否存在
     *
     * @param databaseName    数据库名称
     * @param executeFunction 执行判断函数
     * @return exist or no
     */
    boolean existTable(String databaseName, Function executeFunction);

    /**
     * 返回 DDL_HISTORY 表名
     *
     * @return SQL
     */
    default String getDdlHistory() {
        return "ddl_history";
    }

    /**
     * ddl_history sql
     *
     * @return SQL
     */
    String createDdlHistory();

    /**
     * select ddl_history sql
     *
     * @param script Sql Script
     * @param type   Execute Type
     * @return SQL
     */
    default String selectDdlHistory(String script, String type) {
        StringBuffer sql = new StringBuffer();
        sql.append("SELECT version FROM ").append(getDdlHistory()).append(" WHERE script='").append(script);
        sql.append("' AND type='").append(type).append("'");
        return sql.toString();
    }

    /**
     * insert ddl_history sql
     *
     * @param script  Sql Script
     * @param type    Execute Type
     * @param version Execute Version
     * @return SQL
     */
    default String insertDdlHistory(String script, String type, String version) {
        StringBuffer sql = new StringBuffer();
        sql.append("INSERT INTO ").append(getDdlHistory()).append("(script,type,version) VALUES ('");
        sql.append(script).append("','").append(type).append("','").append(version).append("')");
        return sql.toString();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy