Music Database Problems (1 Viewer)

jburnette

Portal Pro
August 24, 2006
758
116
Kentucky
Home Country
United States of America United States of America
I'm wondering why when I try to implement the GetSongsByGenre function of the music database, the list I pass to be popluated does indeed get populated but the songs don't have any type of real information. It's basically hundreds of blank items that will not play with g_player and have no title/artist/etc information. I'm using the syntax of GetSongsByGenre(genre, list) with those being a string with a valid genre name and the list being a list of song. The function used to need the genreid but that seems to have been changed. Am I missing something, or is it just not working?
 

rtv

Retired Team Member
  • Premium Supporter
  • April 7, 2005
    3,622
    301
    Osnabruck
    Home Country
    Germany Germany
    In MusicDatabase.Lookups change line 560 "GetSongsByFilter(sql, out aSongList, "genre");"
    into
    Code:
    GetSongsByFilter(sql, out aSongList, "tracks");
    Please report back if that helps...
     

    Users who are viewing this thread

    Top Bottom