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

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


        + " inner join music.album ma on la.album_id = ma.id"
        + " inner join music.artist a on ma.artist_id = a.id"
        + " where a.artist_name in ('VA', 'VARIOUS ARTISTS')"
        + " order by ma.album_name";

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

TOP

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

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.