Search code examples
c++wxwidgets

Procedure entry point sqlite3_db_filname could not be located in the dll


I am developing an application using "wxWidgets" and "wxSqlite". The following error appears, when I execute the application. enter image description here


Solution

  • It appears it wants to load a function that is not exported by the DLL.
    What code tries to call that function? Is it yours or some framework-code?

    • If it's your code, check for typos and maybe use Dependency Walker to verify that the function is exported by the DLL.
    • If the function is called by third-party code, verify that you set up this component properly.