SQLite C/C++ 编译

前端之家收集整理的这篇文章主要介绍了SQLite C/C++ 编译前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

对于如下使用sqlite 的C/C++程序,

#include <stdio.h>
#include <sqlite3.h> 

int main(int argc,char* argv[])
{
   sqlite3 *db;
   char *zErrMsg = 0;
   int rc;

   rc = sqlite3_open("test.db",&db);

   if( rc ){
      fprintf(stderr,"Can't open database: %s\n",sqlite3_errmsg(db));
      exit(0);
   }else{
      fprintf(stderr,"Opened database successfully\n");
   }
   sqlite3_close(db);
}

如果直接编译
gcc test_sqlite.cpp -o test_sqlite

会发生如下错误

ld: symbol(s) not found for architecture x86_64
clang: error: linker command Failed with exit code 1 (use -v to see invocation)

起原因是没有将sqlite的lib链接进来。解决方法如下:

  1. 如果你是用的是Xcode一类的IDE,如图所示添加对libsqlite3的引用。

  2. 如果你是在terminal使用gcc编译,需要指定sqlite编译选项:
    gcc test_sqlite.cpp -l sqlite3

  3. Makefile的方法还在学习中,后续补充。

原文链接:https://www.f2er.com/sqlite/199318.html

猜你在找的Sqlite相关文章