在 Solaris 10 系统上编译并使用SQLite-3.4.2
Posted zieckey
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在 Solaris 10 系统上编译并使用SQLite-3.4.2相关的知识,希望对你有一定的参考价值。
All Rights Reserved!
这里就可以测试下:
bash-3.00# /lib/svc/bin/sqlite
SQLite version 2.8.15-repcached-Generic Patch
Enter ".help" for instructions
sqlite>
所以我决定自己编译一个最新的SQLite
这里我下载了源码的这个包:sqlite-amalgamation-3_4_2.zip
该包将SQLite数据库的所有源代码集中在一个 sqlite3.c C源文件和 sqlite3.h 头文件,
这样就非常便于我们编译,特别是对于Mikefile文件规则不熟悉的人。
bash-3.00# ls
sqlite3.c sqlite3.h
它是一个使用SQLite库去操作SQLite数据库文件的独立文件,
编译它需要一个 shell.c 文件,
这个文件可以从 http://www.sqlite.org/cvstrac/fileview?f=sqlite/src/shell.c&v=1.166
处得到一个拷贝,好了,命令如下:
bash-3.00# ls
shell.c sqlite3 sqlite3.c sqlite3.h
输出文件也就是SQLite3的命令行工具文件被命名为:sqlite3
bash-3.00# gcc -c sqlite3.c -o libsqlite3.so
bash-3.00# ls
libsqlite3.so shell.c sqlite3 sqlite3.c sqlite3.h
输出文件也就是SQLite3的动态链接库文件被命名为:libsqlite3.so
bash-3.00# ./sqlite3 zieckey.db
SQLite version 3.4.2
Enter ".help" for instructions
sqlite> .exit
bash-3.00#
|
上面C程序保存为 testsqlite.c 文件,
testsqlite.c:8:21: sqlite3.h: 无此文件或目录
testsqlite.c: In function `main':
testsqlite.c:12: error: `sqlite3' undeclared (first use in this function)
testsqlite.c:12: error: (Each undeclared identifier is reported only once
testsqlite.c:12: error: for each function it appears in.)
testsqlite.c:12: error: `db' undeclared (first use in this function)
testsqlite.c:25:2: warning: no newline at end of file
bash-3.00# gcc testsqlite.c -lsqlite3
testsqlite.c:8:21: sqlite3.h: 无此文件或目录
testsqlite.c: In function `main':
testsqlite.c:12: error: `sqlite3' undeclared (first use in this function)
testsqlite.c:12: error: (Each undeclared identifier is reported only once
testsqlite.c:12: error: for each function it appears in.)
testsqlite.c:12: error: `db' undeclared (first use in this function)
testsqlite.c:25:2: warning: no newline at end of file
bash-3.00# gcc testsqlite.c -lsqlite3 -I.
testsqlite.c:25:2: warning: no newline at end of file
ld: 致命的: 库 -lsqlite3: 没有找到
ld: 致命的: 文件处理错误。无输出写到a.out
collect2: ld returned 1 exit status
bash-3.00# gcc testsqlite.c -lsqlite3 -I. -L.
testsqlite.c:25:2: warning: no newline at end of file
bash-3.00# ls
a.out libsqlite3.so shell.c sqlite3 sqlite3.c sqlite3.h testsqlite.c zieckey.db
bash-3.00# ./a.out
open zieckey.db successfully!
以上是关于在 Solaris 10 系统上编译并使用SQLite-3.4.2的主要内容,如果未能解决你的问题,请参考以下文章
在 Solaris 10 系统上编译并使用SQLite-3.4.2
在运行 64 位 linux 的 Armv8 (aarch64) 上编译并运行 32 位二进制文件