Hallo.
After I changed my development machine, I was not able any more to load the SQLITE3.DLL in my .Net application. Looking around, I found this article that describes the problem. http://www.sqlite.org/cvstrac/tktview?tn=1474 The solution is to recompile the DLL with visual studio: I created a new project with Visual Studio 2005 and I recompiled the DLL, everything works. There are two things I'm a bit worried about: The first is the huge number of parameters of the compiler, maybe they are right, maybe they are wrong, but how can we know it in a deterministic way? The second is the number of warnings I received in the compilation: 144. The warnings are of two categories, deprecated functions (sprintf !!!!) and unsafe typecast (signed/unsigned, int/double) Is there anybody who already did this compilation? Bye, Michele