SQLite User Forum

System.EntryPointNotFoundException: Unable to find an entry point named ’SI9dbf9d88aa001ea6’ in DLL ’SQLite.Interop.dll’
Login

System.EntryPointNotFoundException: Unable to find an entry point named 'SI9dbf9d88aa001ea6' in DLL 'SQLite.Interop.dll'

(1) By Brandon (wisch10) on 2023-04-06 12:44:32 [source]

having an issue where my application runs fine in Visual Studio but when I create the installer and install on my PC, I get the System.EntryPointNotFoundException: Unable to find an entry point named 'SI9dbf9d88aa001ea6' in DLL 'SQLite.Interop.dll' error.

I used NuGet to download the following items to my main project: System.Data.SQLite v 1.0.117.0, System.Data.SQLite.Core v 1.0.117, SQLite.Interop.DLL v 1.0.103. My application and the installer are set to target the x64 configuration and I have added x64 and x86 folders in my project with the Interop dll inside so they are installed in the same directory as my main executable.

I am new to using SQLite and move to it for this application as I want to ship the database with the installer so it can be used off-line and I don't have to manage other's databases (single-user software).

Any insight as to what I need to change/do to get this to run when installed on my PC would be greatly appreciated...