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

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


        + " inner join music.track t on st.track_id = t.id"
        + " inner join music.artist a on t.artist_id = a.id"
        + " where not exists (select 1 from music.lovedtrack lt"
        + "   where lt.lastfmuser_id = st.lastfmuser_id and lt.track_id = st.track_id)";

    return jdbcTemplate.query(sql, new UserStarredTrackRowMapper());
  }
View Full Code Here

TOP

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

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.