diff options
author | Jonathan Marshall <jmarshall@xbmc.org> | 2013-12-27 11:01:33 +1300 |
---|---|---|
committer | Jonathan Marshall <jmarshall@xbmc.org> | 2013-12-27 11:04:05 +1300 |
commit | e5807ec32789f22e7030d5ed6e2b9754ad70a66e (patch) | |
tree | 73985f06a625dcaeae891a224c4713908a2ba156 | |
parent | 51273e596c0cb163bf4089904646475d8b222082 (diff) |
[mysql] table names should be case sensitive
-rw-r--r-- | xbmc/music/MusicDatabase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/music/MusicDatabase.cpp b/xbmc/music/MusicDatabase.cpp index 65dcf3510f..86e972cd3f 100644 --- a/xbmc/music/MusicDatabase.cpp +++ b/xbmc/music/MusicDatabase.cpp @@ -4076,7 +4076,7 @@ bool CMusicDatabase::UpdateOldVersion(int version) " strDied, strDisbanded, strYearsActive, " " strImage, strFanart " " FROM artist " - " LEFT JOIN artistinfo ON artist.idArtist = artistInfo.idArtist"); + " LEFT JOIN artistinfo ON artist.idArtist = artistinfo.idArtist"); m_pDS->exec(PrepareSQL("UPDATE artist_new SET lastScraped='%s' WHERE idArtist IN (SELECT idArtist FROM artistinfo)", CDateTime::GetCurrentDateTime().GetAsDBDateTime().c_str())); m_pDS->exec("DROP TABLE artist"); m_pDS->exec("DROP TABLE artistinfo"); |