【sqlite】1 start

描述:

是数据库引擎,基于c,所以需要提前编译才能运行

基本文件:sqlite3.c sqlite3.h shell.c

编译命令 http://www.sqlite.org/howtocompile.html#amal

下面列举主要目录

动态分配

sqlite采用动态内存分配,运用于sqlite reliable,predictable,robust,secure,efficient

动态分配特性:http://www.sqlite.org/malloc.html

  • robust against allocation failures (sqlite nomem)
  • no memory leaks(sqlite3 finalize,sqlite3 close())
  • memory usage limits( sqlite3 soft heap limit64,不重新分配,而是利用堆栈缓存)
  • zero-malloc option
  • application-supplied memory allocators
  • proof against breakdown and fragmentation
  • memory usage statics
  • plays well with mempry debuggers
  • minimal calls to the allocator
  • open acceess(malloc,realloc,free)

I/O异步模型asynchronous

c/c++接口

sqlite使用方法(环境)

sqlite架构

sqlite自动提交功能

sqlite作为文件形式的好处

sqlite书籍

sqlite的基本命令

基本命令具体使用

sqlite中约束冲突解决

sqlite的典型构建

sqlite3的基本数据类型

sqlite的突出特性

query语句

sqlite中文件格式变化

sqlite database中文件格式

sqlite测试

sqlite编译

;;;;;

原文地址:https://www.cnblogs.com/wygyxrssxz/p/4521470.html