On Wed, 11 Jan 2017 12:11:36 +0200
Rael Bauer <supp...@bauerapps.com> wrote:

> I am trying to compile the latest amalgamation (3160200) as a dll on 
> Windows 10 x64, using VS2015 x86 Native Tools Command Prompt. The dll 
> compiles fine, however trying to use this dll in various tools
> (Delphi) results in the error "sqlite3_open not found".

Your question regards tooling, not SQLite.  

Did the compilation produce an import library, and did you link to that
import library in building your Delphi app?  The import library
describes the entry points in the the DLL.  Without it, the linker has
no way to resolve references supplied by the DLL.  

If memory serves, there's a windows tool dumpbin.exe that shows various
aspects of binaries.  It will confirm that sqlite3_open is exported by
the DLL.  It's then up to you to show Delphi where to find it.  

HTH.  

--jkl

_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to