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

com.codingapi.springboot.permission.db.template.SQLTemplate Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package com.codingapi.springboot.permission.db.template;

/**
 * @author lorne
 * @since 1.0.0
 */
public interface SQLTemplate {

    /**
     * @param  driverName connection driverName
     * @return match result
     */
    boolean match(String driverName);

    /**
     * create table sql
     * @param tableName table name
     * @return create sql
     */
    String create(String tableName);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy