sqlite3在Linux下的编程0

sqlite3在Linux下的编程0,第1张

概述简单的创建和关闭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

简单的创建和关闭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 )

总结

以上是内存溢出为你收集整理的sqlite3在Linux下的编程0全部内容,希望文章能够帮你解决sqlite3在Linux下的编程0所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1177389.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存