by trixmoto » Fri Oct 25, 2013 8:43 am
My "ImportM3U" script works by checking the path of tracks in the library against the paths in an M3U file. For example, this...
Code: Select all
SELECT Songs.ID FROM Songs WHERE Songs.SongPath LIKE '%\10%The%Blues%Brothers%B%Movie%Box%Car%Blues%'
...which should match with the path "
:\Music\The Blues Brothers\Briefcase Full Of Blues (1995)\10_The Blues Brothers_'B' Movie Box Car Blues.mp3". This definitely used to work, but for some reason, it no longer is in the latest version (and maybe a few versions now). However, if I run this command...
Code: Select all
SELECT Songs.ID FROM Songs WHERE Songs.SongPath LIKE '%Blues%'
...then it does find this track. It looks like you can only have two "%" characters in a LIKE!?
My "ImportM3U" script works by checking the path of tracks in the library against the paths in an M3U file. For example, this...
[code]SELECT Songs.ID FROM Songs WHERE Songs.SongPath LIKE '%\10%The%Blues%Brothers%B%Movie%Box%Car%Blues%'[/code]
...which should match with the path "[b]:\Music\The Blues Brothers\Briefcase Full Of Blues (1995)\10_The Blues Brothers_'B' Movie Box Car Blues.mp3[/b]". This definitely used to work, but for some reason, it no longer is in the latest version (and maybe a few versions now). However, if I run this command...
[code]SELECT Songs.ID FROM Songs WHERE Songs.SongPath LIKE '%Blues%'[/code]
...then it does find this track. It looks like you can only have two "%" characters in a LIKE!? :-?