// Now check that the answers are correctly stored in the database
boolean correctAnswerFound = myTools.dataSearch("Answer", "id", correctAnswerId);
boolean answer2Found = myTools.dataSearch("Answer", "id", answer2Id);
boolean answer3Found = myTools.dataSearch("Answer", "id", answer3Id);
boolean answer4Found = myTools.dataSearch("Answer", "id", answer4Id);
// Now check, if not all the database checks are true, return false status
if(!(questionFound && correctAnswerFound && answer2Found && answer3Found && answer4Found)) {