SQLite源码下载编译

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

1 源码下载以及文件说明

源码下载地址:http://www.sqlite.org/download.html

下载的代码sqlite-preprocessed-3081101.zip

下载页面内容说明:

/***

最简单基本的源码,所有的代码实现都在sqlite3.c文件中实现,简称单源文件

对于我们研究sqlite源码没有多大的帮助,层次并不分明,适合于编译成库提供

动态链接sqlite代码15万行,研究单文件源码无从下手

***/

Source Code

sqlite-amalgamation-3090200.zip

(1.75 MiB) Csource code as an amalgamation,version 3.9.2.

(sha1:2837b7f910a217aadc6e5862fcb8f6a3e365622b)

sqlite-autoconf-3090200.tar.gz

(2.18 MiB) Csource code as an amalgamation. Also includes a "configure" scriptand TEA makefiles for the TCL Interface.

(sha1:dae1ae5297fece9671ae0c434a7ecd0cda09c76a)Lite version 3.9.2.

(sha1:2c10f5e40ac8fd77eebe61cdf48df29351cdbc9b)

sqlite-src-3090200.zip

(8.85 MiB) Snapshopof the complete (raw) source tree for sqlite version 3.9.2. See How To Compilesqlite for usage details.

(sha1:e3bf27dee50bda25bc5b87254541d7f52bfcd4bb)

/***

提供了层次分明的90多个文件,适合研究源码,就是他了!!!

***/

sqlite-preprocessed-3090200.zip

(1.88 MiB) PreprocessedC sources for SQ

文件说明:

shell.c:提供了main函数入口,可生成sqlite.exe的可执行程序,生成的控制台操作sqlite数据库

tclsqlite.c:提供了在Linux系统下,进行测试sqliteTCL脚本

这两个文件对于编译环境是windows,只是将sqlite编译进程序中都不需要,添加代码的时候,需要进行剔除。

sqlite3.h:提供了对外使用的所有接口

sqlite3ext.h:文件暂时不了解

** This header file defines the sqliteinterface for use by

** shared libraries that want to beimported as extensions into

** an sqlite instance. Shared libraries that intend to be loaded

** as extensions by sqlite should #includethis file instead of

** sqlite3.h.

2 编译选项说明

必选编译选项:

sqlITE_CORE

FTS1有一个设计的缺陷,会导致数据库错误databasecorruption.强烈推荐废弃该模块,改用fts3或者更高的模块。如果你相信fts1的使用是安全的,可以通过添加DsqlITE_ENABLE_BROKEN_FTS1=1到编译选项。

FTS1模块将会作为一个扩展模块而被编译(当sqlITE_CORE没有被定义的情况下)。

另外如果sqlITE_ENABLE_FTS1被定义,FTS1也会被编译进sqlite内核。

可选编译选项:

sqlITE_ENABLE_RTREE

Rtree模块编译进sqlite内核,本研究针对二维空间的POI进行存储,

所以必须开启Rtree模块,稍后会进行源码剖析。

sqlITE_ENABLE_COLUMN_MetaDATA

作用:可以调用如下的函数

sqlITE_API const char *sqlITE_STDCALLsqlite3_column_database_name(sqlite3_stmt*,int);

sqlITE_API


const void *sqlITE_STDCALLsqlite3_column_database_name16(sqlite3_stmt*,int);

sqlITE_API const


char *sqlITE_STDCALLsqlite3_column_table_name(sqlite3_stmt*,int);

sqlITE_API const void


*sqlITE_STDCALLsqlite3_column_table_name16(sqlite3_stmt*,int);

sqlITE_API const char


*sqlITE_STDCALLsqlite3_column_origin_name(sqlite3_stmt*,int);

sqlITE_API const void


*sqlITE_STDCALLsqlite3_column_origin_name16(sqlite3_stmt*,int);

这些函数主要是获取数据库的库名,表名,列名

调用条件:必须在[sqlite3_step()]之后,[sqlite3_finalize()]之前调用

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

猜你在找的Sqlite相关文章