The versions of System.Data.SQLite.dll and SQLite.Interop.dll in both my x86 and x64 folders are on 1.0.97.0 (the reference is also this version, updated from an older version). However, I have the following error:
Unable to find an entry point named 'sqlite3_changes_interop' in DLL 'SQLite.Interop.dll'
Since they are all the same version, this post, and similar posts, havn't been able to help.
I've turned on native code debugging. The SQLite dll itself seems to have loaded from the correct place, as I see a message in the debug output similar to:
Loaded 'L:\path_to_project_folder\x64\System.Data.SQLite.dll'
And these other lines also exist in the output:
Loaded 'L:\path_to_project_folder\x64\SQLite.Interop.dll'
Loaded 'C:\Program Files (x86)\Dell Backup and Recovery\Components\Shell\SQLite.Interop.dll'
This seems strange to me... I do have a Dell Backup and Recovery utility, and there is an older version of the SQLite and Interop dlls in this path (both 1.0.80.0) so it would seem like the SQLite in my project folder is trying to use this interop dll and I have absolutely no clue why.
Is there any particular reason this would happen? Is there a way to circumvent/eliminate this behavior?
Please do not suggest removing this utility as it is not an appropriate approach to ask all customers using the program to do the same.