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

com.easy.query.db2.config.DB2SQLKeyword Maven / Gradle / Ivy

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

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

/**
 * create time 2023/7/28 21:09
 * 文件说明
 *
 * @author xuejiaming
 */
public final class DB2SQLKeyword extends AbstractSQLKeyword {
    @Override
    protected String getQuoteStart() {
        return "\"";
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy