Skip to content

Commit

Permalink
新增支持瀚高(HighGo)数据库
Browse files Browse the repository at this point in the history
  • Loading branch information
ligengrong committed Jun 4, 2024
1 parent c78f5ba commit d845cf3
Show file tree
Hide file tree
Showing 5 changed files with 763 additions and 0 deletions.
4 changes: 4 additions & 0 deletions XCode/DataAccessLayer/Common/DatabaseType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ public enum DatabaseType
[Description("人大金仓(KingBase)数据库")]
KingBase = 13,

/// <summary>瀚高(HighGo)数据库</summary>
[Description("瀚高(HighGo)数据库")]
HighGo = 14,

///// <summary>网络虚拟数据库</summary>
//[Description("网络虚拟数据库")]
//Network = 100,
Expand Down
2 changes: 2 additions & 0 deletions XCode/DataAccessLayer/Common/DbFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ static DbFactory()
Register<TDengine>(DatabaseType.TDengine);
Register<Hana>(DatabaseType.Hana);
Register<KingBase>(DatabaseType.KingBase);
Register<HighGo>(DatabaseType.HighGo);
//Register<Access>(DatabaseType.Access);
//Register<SqlCe>(DatabaseType.SqlCe);
//Register<Network>(DatabaseType.Network);
}
Expand Down
Loading

0 comments on commit d845cf3

Please sign in to comment.