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 6b11ae0 commit dbae473Copy full SHA for dbae473
src/main/java/com/codingapi/dbstream/driver/DBStreamProxyDriver.java
@@ -52,6 +52,9 @@ public boolean acceptsURL(String url) throws SQLException {
52
Enumeration<Driver> drivers = DriverManager.getDrivers();
53
while (drivers.hasMoreElements()) {
54
Driver driver = drivers.nextElement();
55
+ if(driver.getClass().equals(DBStreamProxyDriver.class)){
56
+ continue;
57
+ }
58
if (driver.acceptsURL(url)) {
59
this.driver = driver;
60
return true;
0 commit comments