- Moderator
- #81
Remove the old database, install, run the configurator, imported NFO. Works, no errors. Speed import and enter the plugin Video increased.Little speed improvement
Remove the old database, install, run the configurator, imported NFO. Works, no errors. Speed import and enter the plugin Video increased.Little speed improvement
Hi
Strings with singel pling ' is not saved correctly due to the RemoveInvalidChars function
' should not be escaped by another single pling
RemoveInvalidChars should NOT alter strings for mySQL database
For VideoDataBaseADO:
public void RemoveInvalidChars(ref string strTxt)
{
}
Movie with filename "C'est Pas Moi, Je Le Jure! (2008).mkv" get imported and saved as "\C''est Pas Moi, Je Le Jure! (2008)" in table files
When movie is selected in MP (view: title index) Mp can't find file "C''est Pas Moi, Je Le Jure! (2008).mkv"
Movie with filename "C'est Pas Moi, Je Le Jure! (2008).mkv" get imported and saved as "\C''est Pas Moi, Je Le Jure! (2008)" in table files
When movie is selected in MP (view: title index) Mp can't find file "C''est Pas Moi, Je Le Jure! (2008).mkv"
Please try this dll.
The all movies with f.ex genre "Horror" get listet and not only movies with only genre "Horror"
The all movies with f.ex genre "Horror" get listet and not only movies with only genre "Horror"
Can you test this too?
The all movies with f.ex genre "Horror" get listet and not only movies with only genre "Horror"
Can you test this too?
When I select genre='Horror' i only get listed 8 movies on the right
View attachment 163393
the list should contain 131 titles (out of 1509), with current select you could end up with a list with no titles.
Select from my database:
select count(*) from movieinfo
where strGenre='Horror'
count=8
select count(*) from movieinfo, genre, genrelinkmovie
where genre.strGenre='Horror' and Genre.idGenre=genrelinkmovie.idGenre and movieinfo.idMovie=genrelinkmovie.idMovie
count=131