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

fun.langel.cql.resolve.dialect.MysqlDmlDialectResolver Maven / Gradle / Ivy

The newest version!
package fun.langel.cql.resolve.dialect;

import fun.langel.cql.dialect.Dialect;
import fun.langel.cql.dialect.Mysql;

/**
 * @author [email protected](GuHan)
 * @since 2022/8/5 14:06
 **/
public class MysqlDmlDialectResolver implements MysqlDialectResolver {

    @Override
    public Dialect resolve(String statement) {
        return new Mysql(statement);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy