cn.sylinx.hbatis.db.dialect.SqlServerDialect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbatis-core Show documentation
Show all versions of hbatis-core Show documentation
hbatis is a simple orm framework
package cn.sylinx.hbatis.db.dialect;
import cn.sylinx.hbatis.db.common.FS;
import cn.sylinx.hbatis.db.common.fs.SqlserverFS;
public class SqlServerDialect extends DefaultDialect {
@Override
public DbType getDbType() {
return DbType.SQLSERVER;
}
@Override
public FS createFluentSql(Class clazz) {
return SqlserverFS.of(clazz);
}
}