解压命令:

tar zvxf sqlite-autoconf-3380500.tar.gz

配置

cd sqlite-snapshot-201708031550./configure --prefix=/home/gec/sqlite

编译

phpsqlite3prepare手把手教你在嵌入式装备中应用SQLite3 SQL

make

安装

make install 三、SQLite的利用

新建数据库文件sqlite3 数据库文件的路径 //打开/创建//比如:sqlite3 first.db

3.1 基本操作命令

.exit/.quit -------- 退出数据库命令行.help -------------- 帮助解释信息.tables ------------ 查看当前数据库中所有的表3.2 数据库访问的SQL语句

基本语法:

所有的SQL语句都以分号(;)结束不区分大小写

嵌入式物联网须要学的东西真的非常多,千万不要学错了路线和内容,导致人为要不上去!

无偿分享大家一个资料包,差不多150多G。
里面学习内容、面经、项目都比较新也比较全!
某鱼上买估计至少要好几十。

点击这里找小助理0元领取:https://s.pdb2.com/l/cnklSITCGo24eIn

3.3 新建表格

create table 表名(字段名1 字段类型1,字段名2 字段类型2,字段名3 字段类型3,...);比如://创建一个stutbl的表,表中有3个字段//分别是整数类型的学号id,字符串类型的name和整数类型的agecreate table zhiguoxin(id int,name char[20],age int);//不存在则创建create table if not exists zhiguoxin(id int,name char[20],age int);//如果希望表中某个字段的内容不重复,可以用unique润色该字段create table if not exists zhiguoxin(id int unique,name char[20],age int);

3.4 删除表格drop table 表名;//drop table zhiguoxin;3.5 往表格中插入数据insert into 表名 values(字段值1,字段值2,字段值3,....);//字段值如果是字符串,必须用''(单引号)括起来比如:insert into zhiguoxin values(1001,'刘尧',18);insert into zhiguoxin values(1002,'聂衍文',19);insert into zhiguoxin values(1003,'杨佳晨',20);insert into zhiguoxin values(1004,'冯华阳',21);

完成插入之后,zhiguoxin 的表格内容如下:

idnameage1001刘尧181002聂衍文191003杨佳晨201004冯华阳21

3.6 查询表中的数据

//查询表中的所有数据

select from 表名;//select from zhiguoxin;

3.7 查看数据库

可以把first.db数据库文件拷贝至windows下,利用SQLite Developer打开即可看到。
SQLite Developer下载地址

https://mydown.yesky.com/pcsoft/443425.html

3.8 按条件查找

1.利用where指定查询条件

select from zhiguoxin where id=1003;//查询id值为1003的条款select from zhiguoxin where age>=19 and age<21;select from zhiguoxin where age>=19 or age<21;

2.指定查询的字段

select id,name,age from zhiguoxin;//只查询id,name,age的字段

3.利用where+like实现模糊查询

select from zhiguoxin where name like '刘%';//查找名字以刘开头的条款

4.利用order by实现查询结果按某个字段的值升序/降序输出

select from zhiguoxin order by age desc;//按年事降序排序 select from zhiguoxin order by id asc; //按id升序排序

3.9 删除表中的条款delete from 表名 where 条件;//删除所有符合条件的条款比如:delete from zhiguoxin where id=1001;

3.10 更新(修正)表中的条款update 表名 set 字段名1=字段值1,字段名2=字段值2... where 条件;//修正符合条件的条款比如:update zhiguoxin set age=100 where id=1002;

3.11 SQLite中字段类型

数字:

int ------- 整型smallint ---- 短整型tinyint ----- 微型整数(0~255)bit --------- 0 or 1float ------ 单精度浮点型real ------- 双精度浮点型

字符串:

char ---------- 非unicode定长字符串 < 8000varchar ------- 非unicode变长字符串 < 8000text ---------- 非unicode变长字符串 < 2^32-1nchar ---------- unicode定长字符串 < 8000nvarchar ------- unicode变长字符串 < 8000ntext ---------- unicode变长字符串 < 2^32-1四、SQLite的C措辞访问接口

sqlite本身自带C措辞访问接口,在C措辞的环境下可以直策应用,利用这些接口的代码须要 sqlite的源码编译进可实行程序 或者 编译时链接sqlite的库。

4.1 打开 sqlite3_open

int sqlite3_open( const char filename, / 数据库的文件路径 / sqlite3 ppDb / 输出参数:传出代表打开数据库的句柄 /);//成功返回SQLITE_OK,否则打开失落败char ---------- 非unicode定长字符串 < 8000varchar :非unicode变长字符串 < 8000text :非unicode变长字符串 < 2^32-1nchar:unicode定长字符串 < 8000nvarchar : unicode变长字符串 < 8000ntext :unicode变长字符串 < 2^32-14.2 关闭 sqlite3_close

int sqlite3_close(sqlite3 pDb);//传入要关闭的数据库的句柄4.3 编译方法

1.直接编译源码gcc sqlite3.c sqlite_test.c -pthread -ldl -o sqlite_test2.链接sqlite3的动态库gcc sqlite_test.c -pthread -ldl -lsqlite3 -L /home/gec/sqlite/lib -o sqlite_test //如果运行时找不到sqlite3的库,可以将编译出来的库文件拷贝到/usr/lib目录下(cp -r) 4.4 实行SQL语句的接口 sqlite3_exec

int sqlite3_exec( sqlite3 pDb, / 打开的数据库的句柄 / const char sql, / 要实行的SQL语句 / int (callback)(void arg,int col,char str,char name), / 回调函数,处理SQL语句实行返回的结果(查询),一条结果调用一次 arg - exec的第四个参数 col - 本条结果的字段数 str - 记录字段值的数组 name - 记录字段名的数组 回调函数必须返回SQLITE_OK / void arg, / 通报给回调函数的第一个参数 / char errmsg / 缺点信息 /);//成功返回SQLITE_OK,否则实行失落败几个例子

//连接数据库int Connection_Sqlite3DataBase(){ rc = sqlite3_open("./face_database/face.db", &db); if (rc != SQLITE_OK) { fprintf(stderr, "Can't open database: %s\n", sqlite3_errmsg(db)); sqlite3_close(db); exit(1); } else printf("You have opened a sqlite3 database named bind.db successfully!\nCongratulation! Have fun!\n"); return 0;}//将图片插入到数据库void insert_face_data_toDataBase(const char name, MByte face_feature, MInt32 featureSize){ sqlite3_prepare(db, "insert into face_data_table(name,face_feature,feature_size) values (?,?,?);", -1, &stmt, NULL); sqlite3_bind_text(stmt, 1, name, strlen(name), NULL); sqlite3_bind_blob(stmt, 2, face_feature, featureSize, NULL); sqlite3_bind_int(stmt, 3, featureSize); sqlite3_step(stmt);}

原文链接:https://mp.weixin.qq.com/s/xPICKBDMWN-9dOimDCwzIw

转载自:果果小师弟

原文链接:手把手教你在嵌入式设备中利用SQLite3

本文来源网络,免费传达知识,版权归原作者所有。
如涉及作品版权问题,请联系我进行删除。