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,7 +572,10 @@ public class StatementInjector extends MariaDbConnection {
@Override @Override
public boolean next() throws SQLException { public boolean next() throws SQLException {
return !rsReturns.isEmpty(); if (rsReturns != null) {
return !rsReturns.isEmpty();
}
return false;
} }
@Override @Override