- assigned_to: nobody --> dschafroth
- status: open --> closed-fixed
On linux (and I assume other os's that support case
sensitive filenames) references to table names must
have the correct case...
3 locations require a fix in
source/akey/util/cddb/CddbMysqlInterface.java
---------------------------
line 437
s.executeQuery( "delete from cddbalias where cddbId="
+ cddbId );
should be
s.executeQuery( "delete from cddbAlias where cddbId="
+ cddbId );
---------------------------
line 438
s.executeQuery( "delete from cddbids where cdId=" +
cdId );
should be
s.executeQuery( "delete from cddbIds where cdId=" +
cdId );
---------------------------
line 467
rs = s.executeQuery( "select cdId,genreId from
cddbids" );
should be
rs = s.executeQuery( "select cdId,genreId from
cddbIds" );