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

com.easy.query.mysql.config.MySQLSQLKeyword Maven / Gradle / Ivy

There is a newer version: 2.0.78
Show newest version
package com.easy.query.mysql.config;

import com.easy.query.core.configuration.dialect.AbstractSQLKeyword;

/**
 * create time 2023/4/26 17:24
 * 文件说明
 *
 * @author xuejiaming
 */
public final class MySQLSQLKeyword extends AbstractSQLKeyword {
    @Override
    public String getQuoteStart() {
        return "`";
    }

    @Override
    public String getQuoteEnd() {
        return "`";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy