/*
** Add the ability to override 'extern'
*/
//定义extern的宏,可使用SQLITE_EXTERN来完成extern功能
#ifndef SQLITE_EXTERN
# define SQLITE_EXTERN extern
#endif
//定义SQLITE_API宏
#ifndef SQLITE_API
# define SQLITE_API
#endif
/* no-op宏经常在接口前标记那些实验性的和不推荐的接口。新应用程序最好
**不使用不推荐的接口,它们支持向后兼容。程序员必须意识到实验性接口
**会在某个版本中改变
** These no-op macros are used in front of interfaces to mark those
** interfaces as either deprecated or experimental. New applications
** should not use deprecated interfaces - they are support for backwards
** compatibility only. Application writers should be aware that
** experimental interfaces are subject to change in point releases.
**这些宏在他们需要时,能实现编译器魔法compiler magic警告信息,
**编译器魔法最终产生BUG报告,编译器会试着使用noop宏。
** These macros used to resolve to various kinds of compiler magic that
** would generate warning messages when they were used. But that
** compiler magic ended up generating such a flurry of bug reports
** that we have taken it all out and gone back to using simple
** noop macros.
*/
#define SQLITE_DEPRECATED
#define SQLITE_EXPERIMENTAL
/*
** Ensure these symbols were not defined by some previous header file.
*/
//如果SQLITE_VERSION、SQLITE_VERSION_NUMBER标志已经定义,则取消
#ifdef SQLITE_VERSION
# undef SQLITE_VERSION
#endif
#ifdef SQLITE_VERSION_NUMBER
# undef SQLITE_VERSION_NUMBER
#endif
/*
** CAPI3REF: Compile-Time Library Version Numbers
** SQLITE_VERSION 宏为版本号,[X.Y.Z的SQLITE版本号中,X是主版本号,Y
**是次版本号,Z是发行号
** ^(The [SQLITE_VERSION] C preprocessor macro in the sqlite3.h header
** evaluates to a string literal that is the SQLite version in the
** format "X.Y.Z" where X is the major version number (always 3 for
** SQLite3) and Y is the minor version number and Z is the release number.)^
** ^(The [SQLITE_VERSION_NUMBER] C preprocessor macro resolves
** to an integer with the value (X*1000000 + Y*1000 + Z) where X, Y,
**and Z are the same numbers used in [SQLITE_VERSION].)^
** SQLITE_VERSION_NUMBER根据SQLITE_VERSION中版本号计算一个
**整数(X*1000000 + Y*1000 + Z)
** The SQLITE_VERSION_NUMBER for any given release of SQLite will also
** be larger than the release from which it is derived. Either Y will
** be held constant and Z will be incremented or else Y will be incremented
** and Z will be reset to zero.
**
** Since version 3.6.18, SQLite source code has been stored in the
** <a href="http://www.fossil-scm.org/">Fossil configuration management
** system</a>. ^The SQLITE_SOURCE_ID macro evalutes to
** a string which identifies a particular check-in of SQLite
** within its configuration management system. ^The SQLITE_SOURCE_ID
** string contains the date and time of the check-in (UTC) and an SHA1
** hash of the entire source tree.
** SQLITE_SOURCE_ID 为一个字符串,为SQLITE配置管理系统中的check-in
**详情包含check-in的日期和时间以及整个源码树的SHA1哈希
** See also: [sqlite3_libversion()],
** [sqlite3_libversion_number()], [sqlite3_sourceid()],
** [sqlite_version()] and [sqlite_source_id()].
*/
//定义版本号,并计算SQLITE_VERSION_NUMBER
#define SQLITE_VERSION "3.6.23.1"
#define SQLITE_VERSION_NUMBER 3006023
#define SQLITE_SOURCE_ID "2010-03-26 22:28:06 b078b588d617e07886ad156e9f54ade6d823568e"
/*
** CAPI3REF: Run-Time Library Version Numbers
** KEYWORDS: sqlite3_version, sqlite3_sourceid
** 这些接口通过库而不是头文件提供了
*SQLITE_VERSION、SQLITE_VERSION_NUMBER以**及SQLITE_SOURCE_ID宏
**的相同信息
** These interfaces provide the same information as the [SQLITE_VERSION],
** [SQLITE_VERSION_NUMBER], and [SQLITE_SOURCE_ID] C preprocessor macros
** but are associated with the library instead of the header file. ^(Cautious
** programmers might include assert() statements in their application to
** verify that values returned by these interfaces match the macros in
** the header, and thus insure that the application is
** compiled with matching library and header files.
**可小心地通过包含以下的assert()声明,在应用程序核实匹配头文件中宏的
**这些接口,以确保应用程序使用相匹配的库和头文件编译
** <blockquote><pre>
** assert( sqlite3_libversion_number()==SQLITE_VERSION_NUMBER );
** assert( strcmp(sqlite3_sourceid(),SQLITE_SOURCE_ID)==0 );
** assert( strcmp(sqlite3_libversion(),SQLITE_VERSION)==0 );
** </pre></blockquote>)^
声明:本SQLite源码剖析系列为刘兴(http://deepfuture.iteye.com/)原创,未经笔者授权,任何人和机构不能转载
分享到:
相关推荐
本文将对Android SqliteManager的源码进行深入剖析,以揭示其核心机制。 首先,SQLiteManager主要负责创建、打开、关闭数据库,以及执行SQL语句等操作。源码中,我们可以看到SQLiteOpenHelper子类的实现,这是...
本文将深入剖析SQLite3的源代码,并重点关注其核心组件及实现机制,旨在帮助读者更好地理解SQLite3的工作原理及其在实际开发中的应用。 #### 2. SQLite3程序结构概览 SQLite3的核心功能通过一系列紧密耦合的源代码...
9. **附录与源码分析**:随书源码提供了对SQLite源代码的深度剖析,有助于开发者深入了解其内部实现,并进行二次开发或定制。 通过阅读《SQLite权威指南》第二版,读者不仅可以掌握SQLite的日常使用,还能了解到更...
本文将对Android SqliteManager的源码进行深度剖析,帮助开发者理解其内部机制,提升数据库管理能力。 首先,SqliteManager的核心功能是与SQLite数据库进行交互。在源码中,我们能看到它使用了`SQLiteDatabase`类...
首先,Android联系人APP源码剖析这一标题表明本文将重点讲解Android平台上联系人管理应用的源码,尤其是基于Android 2.3版本进行的分析。通过这种剖析,开发者可以更好地理解如何定制及使用源码,以构建或优化联系人...
【标题】"java源码剖析-FrackingData:面向FracFocus数据分析的存储库。SQL(例如SQLite,PostgreSQL,SQLSe" 这个标题表明我们正在探讨一个Java开发的开源项目,名为FrackingData,它是专门为处理FracFocus数据设计...
6. **多媒体处理**:对于语音和视频通话,源码可能包含了音频和视频编解码技术,如Opus或AAC用于音频,H.264用于视频,以及相关框架如MediaCodec的使用。 7. **推送服务集成**:为了在后台接收消息,TeamTalk可能...
本文将深入剖析Notepad源码,揭示其背后的编程原理和技术细节。 一、数据库管理 Notepad的核心功能之一是存储和管理笔记,这涉及到Android中的SQLite数据库。源码中可以看到,Notepad使用SQLiteOpenHelper子类来...
本篇将深入剖析Android源码中的MyContacts通讯录源码,通过分析其设计思路、实现机制以及关键组件,来探讨Android通讯录应用的核心技术。 首先,通讯录是Android系统中的基础服务之一,MyContacts则是Android提供的...
《深入剖析Android 4.0.3源码》 Android 4.0.3,代号Ice Cream Sandwich(冰淇淋三明治),是Android系统发展的一个重要里程碑,它为开发者提供了更多的功能和优化,提升了用户体验。这份源码是理解Android系统工作...
本篇文章将对标题为“简单的通讯录源码.zip”的压缩包进行深入剖析,主要关注其在安卓平台上的实现,并讨论其中可能涉及的核心技术与功能实现。 首先,该源码的标签明确指出这是一个针对安卓平台的生活应用源码。这...
通过深入剖析这份源码,开发者可以学习到如何构建一个功能完备、用户体验良好的词典应用。 1. **项目结构**: - 项目通常由多个模块组成,包括主应用模块、词典数据模块、网络请求模块等。源码会展示如何划分模块...
《深入剖析Android应用:基于新浪微博客户端源码》 在Android开发领域,研究知名应用的源码是提升技术能力的重要途径之一。本篇文章将基于“android应用源码(精)新浪微博客户端源码.zip”这一资源,深入探讨其中...
《深入剖析Android源码——以WordPress for Android为例》 Android操作系统以其开源、可定制的特性,在全球范围内广受欢迎,尤其在移动应用开发领域占据主导地位。对于开发者来说,理解Android源码是提升技术水平、...
《深入剖析xUtils源码:探索Android开发利器的内在奥秘》 xUtils是一个功能强大的Android开发库,它集成了网络请求、图片加载、数据库操作、视图注入等多个功能,大大简化了Android开发者的工作。本篇文章将围绕...
本篇文章将围绕“Android高级应用源码-一个短信应用源码.zip”进行详细剖析,旨在帮助开发者从源码中汲取养分,提升对Android系统级短信应用的理解和实战技能。 首先,我们要明确的是,短信应用是Android操作系统中...
本文将深度剖析小米便签的源码,带你探索这一应用背后的开发技术。 1. **项目结构分析** - `MiCode-Notes-6cbf71d`是小米便签项目的Git仓库分支,这表明小米便签的开发团队采用了Git进行版本控制,确保代码的稳定...
《深入剖析Android 4.0源码》 Android 4.0,又称为Ice Cream Sandwich(简称ICS),是Google发布的一个重要版本,它在Android操作系统的发展历程中扮演了承上启下的角色,既继承了早期版本的优点,又为后续版本奠定...
《 Memo单词本2.5源码分析:深入理解Android应用开发》 ...通过深入剖析源码,我们不仅能了解一个应用的工作原理,还能学习到如何将理论知识转化为实际的代码,这对于个人的职业发展具有极大的推动作用。
《深入剖析小米文件管理器源码——Android编程实践与解析》 小米文件管理器作为一款广泛应用在Android设备上的系统工具,其源码对于我们理解Android系统的文件管理机制、UI设计以及性能优化等方面具有重要的学习...