Search
 
SCRIPT & CODE EXAMPLE
 

CPP

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
Comment

PREVIOUS NEXT
Code Example
Cpp :: fast io c++ 
Cpp :: how to writt array in c++ 
Cpp :: c++ find key in hashmap 
Cpp :: length of 2d array c++ 
Cpp :: c++ string to double 
Cpp :: prime number program 
Cpp :: c++ std::copy to cout 
Cpp :: C++ Area of a Rectangle 
Cpp :: cpp rand 
Cpp :: c++ triangle 
Cpp :: remove element from vector on condition c++ 
Cpp :: helloworld in c++ 
Cpp :: how to get last element of set in c++ 
Cpp :: check if point is left or right of vector 
Cpp :: c++ char array to int 
Cpp :: c++ string remove last character 
Cpp :: create random vectors c++ 
Cpp :: if even number c++ 
Cpp :: conditional operator in cpp 
Cpp :: gfgdf 
Cpp :: http.begin arduino not working 
Cpp :: string to int in c++ 
Cpp :: vector of strings initialization c++ 
Cpp :: C++ Swap 2 Variables Without Using 3rd Variable 
Cpp :: return array from function c++ 
Cpp :: round up 2 digits float c++ 
Cpp :: Parenthesis Checker using stack in c++ 
Cpp :: delete specific row from dynamic 2d array c++ 
Cpp :: how to get the type of a variable in c++ 
Cpp :: cin.getline 
ADD CONTENT
Topic
Content
Source link
Name
5+4 =