Update OceanBaseForOracle

This commit is contained in:
sunkaixuan 2024-05-09 10:03:20 +08:00
parent 7e0b015be5
commit 7edda3b7af

View File

@ -361,7 +361,7 @@ namespace SqlSugar
method = isNullableType ? getConvertInt16 : getInt16;
if (bindProperyTypeName == "uint32"&&this.Context.CurrentConnectionConfig.DbType.IsIn(DbType.MySql,DbType.MySqlConnector))
method = null;
if (this.Context.CurrentConnectionConfig.DbType == DbType.OceanBaseForOracle)
if (bindPropertyType ==UtilConstants.IntType&& this.Context.CurrentConnectionConfig.DbType == DbType.OceanBaseForOracle)
method = isNullableType ? getMyIntNull : getMyInt;
break;
case CSharpDataType.@bool: