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

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

There is a newer version: 2.3.3
Show newest version
package com.easy.query.mssql.config;

import com.easy.query.core.bootstrapper.DatabaseConfiguration;
import com.easy.query.core.configuration.dialect.SQLKeyword;
import com.easy.query.core.expression.sql.expression.factory.ExpressionFactory;
import com.easy.query.core.func.SQLFunc;
import com.easy.query.core.inject.ServiceCollection;
import com.easy.query.mssql.expression.MsSQLExpressionFactory;
import com.easy.query.mssql.func.MsSQLFuncImpl;

/**
 * create time 2023/5/10 13:40
 * 文件说明
 *
 * @author xuejiaming
 */
public class MsSQLDatabaseConfiguration implements DatabaseConfiguration {
    @Override
    public void configure(ServiceCollection services) {
        services.addService(SQLKeyword.class, MsSQLSQLKeyword.class);
        services.addService(ExpressionFactory.class, MsSQLExpressionFactory.class);
        services.addService(SQLFunc.class, MsSQLFuncImpl.class);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy