I was trying to work out how to load extensions today. Currently I’ve just got 
the amalgamation file included in my project. Started by replacing #include 
“sqlite3.h” with #include “sqlite3ext.h” in all my source files.

I then tried compiling the project but received a string of error messages 
stating

E2451 undefined symbol sqlite3_api

All of these errors point to function declarations in my c++ sqlite wrapper 
that contain a sqlite3_ .. call. e.g.

        int64_t ColI64(int i) {return sqlite3_column_int64(stmt,i);}

Am I doing anything obviously wrong?

I’m using C++ builder Berlin on windows 10.
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to