I\'m trying to get started with the C++ API for SQLite.
#include #include using namespace std; int main() { sqlite3
You need to link the sqlite3 library along with your program:
g++ main.cpp -lsqlite3