Hello,
I've developed my application using Mono under a Linux system. I use System.Data.SQLite and because I wanted it to work in both Linux under Mono and Windows under .NET, I used the managed-only version.
When I run the program with Mono/Linux, everything works fine.
For Windows, I've also added the sqlite3.dll file to the same directory with the binaries (but not added it as a reference to the solution). Every time I attempt to run the program, I get a BadImageFormatException on the command that opens the SQL connection to the database.
All systems I've tested the program on are x86, so the numerous threads I found about problems when running under x64 don't apply to me... Is it something that can be resolved easily?