Package com.github.hakko.musiccabinet.dao.jdbc.rowmapper

Examples of com.github.hakko.musiccabinet.dao.jdbc.rowmapper.ArtistPlayCountRowMapper


        + " inner join music.lastfmgroup g on gwac.lastfmgroup_id = g.id"
        + " where g.group_name = upper(?)"
        + " order by playcount desc, a.artist_name";
   
    return new GroupWeeklyArtistChart(group.getName(), jdbcTemplate.query(
        sql, new Object[]{group.getName()}, new ArtistPlayCountRowMapper()));
  }
View Full Code Here

TOP

Related Classes of com.github.hakko.musiccabinet.dao.jdbc.rowmapper.ArtistPlayCountRowMapper

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.