I\'ve been learning sqlite3 programming in C++ for the first time and this error confounds me and my internet searching abilities.
Here is my code, as far as it gets b
Instead of
#include <sqlite3ext.h>
write
#include <sqlite3.h>
The sqlite3ext.h file is only needed if you are going to write an SQLite extension - a custom function, for example. For regular database access, use sqlite3.h.
sqlite3ext.h
sqlite3.h