Ebaneck / Epita-Java-Project

Introduction to java course project
0 stars 1 forks source link

fixed update issue #14

Closed Donabay closed 6 years ago

Donabay commented 6 years ago

When a user tries to update a row that does not exist, instead of returning a row with null values in some fields, it tells that the row does not exist.

Ebaneck commented 6 years ago

@Donabay still yet, this does not solve the issue

I am reverting to a simple check for null value like this

if (foundIdentity != null){

Donabay commented 6 years ago

it works perfectly on mine