sqlite3在Linux下的编程
简单的创建和关闭sqlite3:
#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 )
相关推荐
dearm 2020-08-25
loveandroid0 2020-06-08
loveandroid0 2020-05-31
Attend 2020-05-27
huacuilaifa 2020-05-27
MFCJCK 2020-05-16
ggwxk0 2020-05-07
MFCJCK 2020-05-05
仁鱼 2020-03-26
huavhuahua 2020-03-03
DAV数据库 2020-03-03
MFCJCK 2020-01-11
Dlanguage 2020-01-03
loveandroid0 2019-12-30
wzxxtt0 2019-12-29
wyqwilliam 2019-12-21
宿舍 2019-11-30
fuzhangpeng 2011-08-09
踩风火轮的乌龟 2008-03-22