Open ggrossetie opened 3 years ago
The JDBC driver should implement the isValid method (probably using a select 1 query).
isValid
select 1
Currently, it throws a java.lang.AbstractMethodError exception:
java.lang.AbstractMethodError
Exception in thread "AWT-EventQueue-0" java.lang.AbstractMethodError at net.sourceforge.jtds.jdbc.JtdsConnection.isValid(JtdsConnection.java:2833)
https://github.com/milesibastos/jTDS/blob/master/src/main/net/sourceforge/jtds/jdbc/JtdsConnection.java#L2853-L2856
The JDBC driver should implement the
isValid
method (probably using aselect 1
query).Currently, it throws a
java.lang.AbstractMethodError
exception:https://github.com/milesibastos/jTDS/blob/master/src/main/net/sourceforge/jtds/jdbc/JtdsConnection.java#L2853-L2856