batchUpdate.declareParameter(new SqlParameter("playcount", Types.INTEGER));
batchUpdate.declareParameter(new SqlParameter("biosummary", Types.VARCHAR));
batchUpdate.declareParameter(new SqlParameter("biocontent", Types.VARCHAR));
for (ArtistInfo ai : artistInfos) {
batchUpdate.update(new Object[]{ai.getArtist().getName(),
ai.getSmallImageUrl(), ai.getMediumImageUrl(), ai.getLargeImageUrl(),
ai.getExtraLargeImageUrl(), ai.getListeners(), ai.getPlayCount(),
ai.getBioSummary(), ai.getBioContent()});
}
batchUpdate.flush();