mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 08:37:25 +08:00
Update GaussDBNative
This commit is contained in:
parent
b02e47a420
commit
f26046e10a
@ -553,6 +553,10 @@ namespace SqlSugar
|
||||
Check.Exception(SugarCompatible.IsFramework, "Db2 only support .net core");
|
||||
InstanceFactory.CustomDllName = "SqlSugar.Db2Core";
|
||||
break;
|
||||
case DbType.GaussDBNative:
|
||||
Check.Exception(SugarCompatible.IsFramework, "GaussDBNative only support .net core");
|
||||
InstanceFactory.CustomDllName = "SqlSugar.GaussDBCore";
|
||||
break;
|
||||
default:
|
||||
throw new Exception("ConnectionConfig.DbType is null");
|
||||
}
|
||||
|
@ -37,6 +37,7 @@ namespace SqlSugar
|
||||
TDSQL,
|
||||
HANA,
|
||||
DB2,
|
||||
GaussDBNative,
|
||||
Custom =900
|
||||
}
|
||||
}
|
||||
|
@ -444,6 +444,10 @@ namespace SqlSugar
|
||||
{
|
||||
return "SqlSugar.DB2."+ type+ name;
|
||||
}
|
||||
else if (type == "GaussDBNative")
|
||||
{
|
||||
return "SqlSugar.GaussDB.GaussDB" + name;
|
||||
}
|
||||
else
|
||||
{
|
||||
//if (!string.IsNullOrEmpty(CustomDllName))
|
||||
|
Loading…
Reference in New Issue
Block a user