bug class fixed involving rs usage

This commit is contained in:
2023-05-23 14:29:08 -04:00
parent adcf7ca927
commit bcc1ac115d
6 changed files with 16 additions and 5 deletions
+4 -1
View File
@@ -63,6 +63,7 @@ public class dbMobHandler extends dbHandlerBase {
if (objectUUID > 0)
mobile = GET_MOB(objectUUID);
}
} catch (SQLException e) {
throw new RuntimeException(e);
}
@@ -238,7 +239,9 @@ public class dbMobHandler extends dbHandlerBase {
preparedStatement.setString(3, String.valueOf(new_value));
ResultSet rs = preparedStatement.executeQuery();
result = rs.getString("result");
if (rs.next())
result = rs.getString("result");
} catch (SQLException e) {
Logger.error(e);