by alexandremf » Thu Apr 19, 2012 1:14 pm
Hi, this error occours in MM 4 and over.
To fix it open the AutoRateAccStarter.vbs file and change this bit of code, its simple and easy.
replace the line 79:
- Code: Select all
SDB.DataBase.ExecSQL("INSERT INTO Filters (Pos,Name,Cond,View,Player,ContentType) VALUES((SELECT Max(Pos) FROM Filters)+1,'AutoRateAccurate','" & Cond & "','" & View & "',0,0)")
by this one:
- Code: Select all
SDB.DataBase.ExecSQL("INSERT INTO Filters (Pos,Name,Cond) VALUES((SELECT Max(Pos) FROM Filters)+1,'AutoRateAccurate','" & Cond & "')")
Reopen MM and enable autorateaccurate in options.
this location of the file is showed on msg error, but it problably stay in
C:\Users\USERNAME\AppData\Roaming\MediaMonkey\Scripts\Auto
Hi, this error occours in MM 4 and over.
To fix it open the AutoRateAccStarter.vbs file and change this bit of code, its simple and easy.
replace the line 79:
[code]
SDB.DataBase.ExecSQL("INSERT INTO Filters (Pos,Name,Cond,View,Player,ContentType) VALUES((SELECT Max(Pos) FROM Filters)+1,'AutoRateAccurate','" & Cond & "','" & View & "',0,0)")
[/code]
by this one:
[code]SDB.DataBase.ExecSQL("INSERT INTO Filters (Pos,Name,Cond) VALUES((SELECT Max(Pos) FROM Filters)+1,'AutoRateAccurate','" & Cond & "')")[/code]
Reopen MM and enable autorateaccurate in options.
this location of the file is showed on msg error, but it problably stay in
C:\Users\USERNAME\AppData\Roaming\MediaMonkey\Scripts\Auto