LOGGER.trace("Get all horses with filters "+filters.entrySet());
finalStringsql="SELECT * FROM "+TABLE_NAME+" WHERE UPPER(name) LIKE :name AND UPPER(description) LIKE :description AND race LIKE :race AND score LIKE :score AND birthday <= :birthday";
// Create a list to hold the results
List<Horse>horses=newArrayList<>();
// Create a map to hold the sql filters with all values set as wildcards