disconnect(st, rs);
}
}
private SongInfo populateSongFromSongViewRS(ResultSet rs) throws SQLException {
SongInfo info = new SongInfo();
info.setSongId(rs.getInt("idSong"));
info.setFile(new File(rs.getString("strPath") + rs.getString("strFileName")));
info.setGenre(rs.getString("strGenre"));
info.setTitle(rs.getString("strTitle"));
return info;
}