V6006. The object was created but it is not being used. The 'throw' keyword could be missing.
V6006 The object was created but it is not being used. The 'throw' keyword could be missing. JdbcConnection.java(88)
@Override
public void setAutoCommit(boolean autoCommit) throws SQLException {
checkOpen();
if (!autoCommit) {
new SQLFeatureNotSupportedException(....);
}
}