mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-06 16:48:24 +08:00
fixed: 修复达梦数据库数据大小写敏感的问题 #I7OYMN
This commit is contained in:
parent
ad150276b3
commit
e5f01a378e
@ -108,9 +108,9 @@ public class DialectFactory {
|
||||
case GOLDILOCKS:
|
||||
case CSIIDB:
|
||||
return new CommonsDialectImpl(KeywordWrap.BACK_QUOTE, LimitOffsetProcessor.MYSQL);
|
||||
case DM:
|
||||
case ORACLE:
|
||||
return new OracleDialect();
|
||||
case DM:
|
||||
case GAUSS:
|
||||
return new CommonsDialectImpl(KeywordWrap.DOUBLE_QUOTATION, LimitOffsetProcessor.ORACLE);
|
||||
case POSTGRE_SQL:
|
||||
|
||||
@ -32,6 +32,9 @@ import java.util.StringJoiner;
|
||||
|
||||
import static com.mybatisflex.core.constant.SqlConsts.*;
|
||||
|
||||
/**
|
||||
* @author michael
|
||||
*/
|
||||
public class OracleDialect extends CommonsDialectImpl {
|
||||
|
||||
//https://docs.oracle.com/cd/A97630_01/appdev.920/a42525/apb.htm
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user