增加Gbase8s驱动支持

This commit is contained in:
Looly
2025-08-18 10:23:52 +08:00
parent 60b80340fc
commit 707daa94f7
2 changed files with 7 additions and 0 deletions

View File

@@ -108,6 +108,8 @@ public class DriverIdentifier implements DriverNames {
new StartsWithDriverMatcher(DRIVER_KINGBASE8, "jdbc:kingbase8:"), new StartsWithDriverMatcher(DRIVER_KINGBASE8, "jdbc:kingbase8:"),
// 南大通用 // 南大通用
new StartsWithDriverMatcher(DRIVER_GBASE, "jdbc:gbase:"), new StartsWithDriverMatcher(DRIVER_GBASE, "jdbc:gbase:"),
// 南大通用8s
new StartsWithDriverMatcher(DRIVER_GBASE8S, "jdbc:gbasedbt-sqli:"),
// 虚谷 // 虚谷
new StartsWithDriverMatcher(DRIVER_XUGU, "jdbc:xugu:"), new StartsWithDriverMatcher(DRIVER_XUGU, "jdbc:xugu:"),
// 神通 // 神通

View File

@@ -128,6 +128,11 @@ public interface DriverNames {
* JDBC 驱动 南大通用 * JDBC 驱动 南大通用
*/ */
String DRIVER_GBASE = "com.gbase.jdbc.Driver"; String DRIVER_GBASE = "com.gbase.jdbc.Driver";
/**
* JDBC 驱动 南大通用8S<br>
* 见https://www.gbase.cn/community/post/4029
*/
String DRIVER_GBASE8S = "com.gbasedbt.jdbc.Driver";
/** /**
* JDBC 驱动 神州数据库 * JDBC 驱动 神州数据库
*/ */