On Fri, 16 Jan 2015 14:31:40 -0800
Random Coder <random.co...@gmail.com> wrote:

> If you're seeing the "Error: The specified procedure could not be
> found." error, and you're not specifying an entry point in the .load
> command, then no doubt the sqlite3_load_extension symbol isn't
> properly exported.  I'd verify that your DLL has this symbol exported
> using a tool like depends (http://www.dependencywalker.com/).  I'm
> guessing you're missing an entry in your .def file, or a similar
> location.

Bingo, and thanks for the pointer.   I forgot that DLL symbols have to
be exported explicitly.  Up until now my module was compiled only for
NetBSD, and lacks any dllexport notation.  

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

Reply via email to