Horje
cannot find -lsqlite3 C++ compiler error Code Example
cannot find -lsqlite3 C++ compiler error
to use sqlite3 in your C++ / C source code you should download
the amalgamation C source file at "https://www.sqlite.org/download.html"
  
then extract the source files in your source folder.
  
Then in your code you include sqlite3 with :
#include "sqlite3.h"

and finaly you compile your program with :
gcc yourSourceFile.cpp sqlite3.c -o yourExeFile.exe




Cpp

Related
c++ sleep Code Example c++ sleep Code Example
scale window sdl2 Code Example scale window sdl2 Code Example
C++ Fahrenheit to Kelvin Code Example C++ Fahrenheit to Kelvin Code Example
c++ how to generate a random number in a range Code Example c++ how to generate a random number in a range Code Example
how to get the player view point location and rotation in ue4 c++ Code Example how to get the player view point location and rotation in ue4 c++ Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11