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
@@ -62,6 +62,7 @@ public class dbNPCHandler extends dbHandlerBase {
if (objectUUID > 0)
npc = GET_NPC(objectUUID);
}
} catch (SQLException e) {
throw new RuntimeException(e);
}
@@ -160,7 +161,9 @@ public class dbNPCHandler 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);