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");
|
Check.Exception(SugarCompatible.IsFramework, "Db2 only support .net core");
|
||||||
InstanceFactory.CustomDllName = "SqlSugar.Db2Core";
|
InstanceFactory.CustomDllName = "SqlSugar.Db2Core";
|
||||||
break;
|
break;
|
||||||
|
case DbType.GaussDBNative:
|
||||||
|
Check.Exception(SugarCompatible.IsFramework, "GaussDBNative only support .net core");
|
||||||
|
InstanceFactory.CustomDllName = "SqlSugar.GaussDBCore";
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
throw new Exception("ConnectionConfig.DbType is null");
|
throw new Exception("ConnectionConfig.DbType is null");
|
||||||
}
|
}
|
||||||
|
@ -37,6 +37,7 @@ namespace SqlSugar
|
|||||||
TDSQL,
|
TDSQL,
|
||||||
HANA,
|
HANA,
|
||||||
DB2,
|
DB2,
|
||||||
|
GaussDBNative,
|
||||||
Custom =900
|
Custom =900
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -444,6 +444,10 @@ namespace SqlSugar
|
|||||||
{
|
{
|
||||||
return "SqlSugar.DB2."+ type+ name;
|
return "SqlSugar.DB2."+ type+ name;
|
||||||
}
|
}
|
||||||
|
else if (type == "GaussDBNative")
|
||||||
|
{
|
||||||
|
return "SqlSugar.GaussDB.GaussDB" + name;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
//if (!string.IsNullOrEmpty(CustomDllName))
|
//if (!string.IsNullOrEmpty(CustomDllName))
|
||||||
|
Loading…
Reference in New Issue
Block a user