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

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


  public List<String> getFilesMissingMetadata() {
    String sql = "select d.path, f.filename from library.filewarning fw"
        + " inner join library.file f on fw.file_id = f.id"
        + " inner join library.directory d on f.directory_id = d.id"
        + " order by d.path, f.filename";
    return jdbcTemplate.query(sql, new FilenameRowMapper());
  }
View Full Code Here

TOP

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

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.