@Override
public ArtistRecommendation mapRow(ResultSet rs, int rowNum) throws SQLException {
int artistId = rs.getInt(1);
String artistName = rs.getString(2);
String imageUrl = rs.getString(3);
return new ArtistRecommendation(artistName, imageUrl, artistId);
}