We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 646cff1 commit fb83268Copy full SHA for fb83268
core/src/main/java/com/alibaba/druid/util/JdbcUtils.java
@@ -550,6 +550,8 @@ public static String getDriverClassName(String rawUrl) throws SQLException {
550
return JdbcConstants.GBASE8S_DRIVER;
551
} else if (rawUrl.startsWith("jdbc:sundb:")) {
552
return JdbcConstants.SUNDB_DRIVER;
553
+ } else if (rawUrl.startsWith("jdbc:gaussdb:")) {
554
+ return "com.huawei.gaussdb.jdbc.Driver";
555
} else {
556
throw new SQLException("unknown jdbc driver : " + rawUrl);
557
}
0 commit comments