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

com.easy.query.mssql.config.MsSQLSQLKeyword Maven / Gradle / Ivy

The newest version!
package com.easy.query.mssql.config;


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

/**
 * create time 2023/5/4 08:30
 * sql server 方言
 *
 * @author xuejiaming
 */
public final class MsSQLSQLKeyword extends AbstractSQLKeyword {
    @Override
    protected String getQuoteStart() {
        return "[";
    }

    @Override
    protected String getQuoteEnd() {
        return "]";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy