Update StatementInjector for missing rsReturns

This commit is contained in:
NMerz 2020-10-09 00:15:57 -04:00
parent d42013a07e
commit f4d1458eb7

View File

@ -572,8 +572,11 @@ public class StatementInjector extends MariaDbConnection {
@Override @Override
public boolean next() throws SQLException { public boolean next() throws SQLException {
if (rsReturns != null) {
return !rsReturns.isEmpty(); return !rsReturns.isEmpty();
} }
return false;
}
@Override @Override
public void close() throws SQLException { public void close() throws SQLException {