#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include"sqlite3.h"
int main()
{
int rc;
sqlite3 *db
rc=sqlite3_open(“test.db”,&db);
if(rc)
{
fprintf(“stderr,can’t open and create a sqlite db/n”);
close_sqlite3(db);
exit(0);
}
else
printf(“well done/n”);
return 0;
}
出现的一般情况为:
undefined reference to `sqlite3_open'
undefined reference to `sqlite3_close'
出现上述问题是因为没有找到库文件的问题。 由于用到了用户自己的库文件,所用应该指明所用到的库,我们可以这样编译: [root@localhost liuxltest]# gcc -o opendbsqlite main.c -lsqlite3 用 -lsqlite3 选项就可以了(前面我们生成的库文件是 libsqlite3.so.0.8.6 等,去掉前面的lib和后面的版本标志,就剩下 sqlite3 了所以是 -lsqlite3 )
原文链接:https://www.f2er.com/sqlite/202705.html