2015-08-26 19:03 GMT+02:00 <papa at arbolone.ca>: > On my Win10, I'd like to compile SQLite3 to create a 64-bit DLL. The > intention is to use this DLL instead of the amalgamation, this way more than > one C++ application can access the same DLL. Please note that I am an > aficionado, not an expert when it comes to C++ and for SQL, well, this would > be my second attempt to get an application to use a database, as opposed to > flat files. > > How would you suggest I should proceed? is this even a good idea?
If you like, you can download my build of the 64-bit dll, and the corresponding import files: <https://sourceforge.net/projects/cyqlite/files/3.8.11/> The sqlite-dll-win64-x64-3081101.zip file contains two import libraries you can use for your project: sqlite3.lib : Suitable for VC++ 6.0 or higher (up to the latest Visual Studio 2014) libsqlite3.dll.a : Suitable for any gcc version (mingw/mingw-64/msys/msys-2) The dll is suitable for any 64-bit windows environment. Regards, Jan Nijtmans