StruckCroissant / Game-DB

Game-DB is a game database search engine deployed on Docker and powered by Java Spring Boot and AngularJS
GNU General Public License v3.0
1 stars 0 forks source link

User table query fails on empty set #15

Closed StruckCroissant closed 2 years ago

StruckCroissant commented 2 years ago

When attempting to get user information for a user that doesn't exist, the query fails with the message: java.sql.SQLDataException: Current position is after the last row

StruckCroissant commented 2 years ago

Commit 01ffcbdc691ef599ae896a20768bd4eb4e2fa18e fixes this issue.

Added checks via resultSet.next() to confirm that there are rows to retrieve. Returns null if not.