mirror of
https://github.com/ClaytonWWilson/Listify.git
synced 2025-12-16 18:48:48 +00:00
Update StatementInjector for missing rsReturns
This commit is contained in:
parent
d42013a07e
commit
f4d1458eb7
@ -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 {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user