• 嵌入式养成计划-33--数据库-sqlite3


    七十一、 数据库

    71.1 数据库基本概念

    • 数据(Data)

      • 能够输入计算机并能被计算机程序识别和处理的信息集合数据库 (Database)
      • 数据库是在数据库管理系统管理和控制之下,存放在存储介质上的数据集合
    • 常用的数据库

    1. 大型数据库Oracle公司是最早开发关系数据库的厂商之一,其产品支持最广泛的操作系统平台。目前Oracle关系数据库产品的市场占有率名列前茅。IBM 的DB2是第一个具备网上功能的多媒体关系数据库管理系统,支持包Linux在内的一系列平台。中型数据库Server是微软开发的数据库产品,主要支持windows平台。

    2. 小型数据库mySQL是一个小型关系型数据库管理系统,开发者为瑞典MySQL AB公司,2008年被Sun公司收购,开放源码。

    3. 基于嵌入式的数据库

      基于嵌入式Linux的数据库主要有SQLite, Firebird, Berkeley DB, eXtremeDBFirebird是关系型数据库,功能强大,支持存储过程、SQL兼容等SQLite关系型数据库,体积小,支持ACID事务Berkeley DB中并没有数据库服务器的概念,它的程序库直接链接到应用程序中 eXtremeDB是内存数据库,运行效率高

    • SQLite3基础

      www.sqlite.org
      SQLite的源代码是C,其源代码完全开放。SQLite第一个Alpha版本诞生于2000年5月。 他是一个轻量级的嵌入式数据库。

    SQLite有以下特性:

    1. 零配置一无需安装和管理配置;
    2. 储存在单一磁盘文件中的一个完整的数据库;
    3. 数据库文件可以在不同字节顺序的机器间自由共享;
    4. 支持数据库大小至2TB;
    5. 足够小,全部源码大致3万行c代码,250KB;
    6. 比目前流行的大多数数据库对数据的操作要快;
    • 安装方式
      • 在线安装方式:
      1.确保虚拟机能联网
      2.更新更新源
         sudo apt-get update                 安装软件及开发环境
         sudo apt-get install sqlite3            --->sqlite3数据库软件
         sudo apt-get install libsqlite3-dev            --->sqlite3数据库开发支持库
         sudo apt-get install sqlitebrowser        --->sqlite3数据库操作软件
      
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      安装成功后,终端输入以下指令,判断是否安装成功:
      sqlite3  my.db
      
      • 1
      出现下列语句,标识安装成功,版本不一样无所谓,只要出现 sqlite> 即可
      	SQLite version 3.7.2         
      ​    Enter ".help" for instructions
      ​    Enter SQL statements terminated with a ";"
      ​    sqlite> 
      
      • 1
      • 2
      • 3
      • 4
      输入 ".quit "退出数据库,
      	linux@linux:~$ sqlite3 my.db
      ​    SQLite version 3.7.2
      ​    Enter ".help" for instructions
      ​    Enter SQL statements terminated with a ";"    sqlite> .quit
      ​    linux@linux:~$ 
      
      • 1
      • 2
      • 3
      • 4
      • 5

    71.2 sqlite3命令语句

    sqlite3不区分大小写;

    71.2.1 sqlite数据库创建

    db     --》名字必须以.db结尾
    如果sq.db存在则直接打开sq.db数据库,如果不存在则先创建再打开;
    ​
    SQLite version 3.22.0 2018-01-22 18:45:57       版本无所谓
    Enter ".help" for usage hints.
    sqlite> 
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    71.2.2 系统命令

    系统命令,需要以 . 开头,不需要以 ; 结尾
    .quit   退出数据库
    .exit   退出数据库
    .help   显示帮助信息,获取所有系统命令;.table  查看当前数据库下的所有表格;
    .schema 查看表的结构
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    71.3 sql语句

    以分号(;)结尾;不区分大小写;
    没有char*类型,用char类型代替
    
    • 1
    • 2

    71.3.1 创建表格

    create table 表名 (字段名 数据类型, 字段名 数据类型);
    create table if not exists 表名 (字段名 数据类型, 字段名 数据类型);
    ​
    eg:
        CREATE TABLE stu (id int, name char, score float);
        CREATE TABLE if not exists stu1 (id int, name char, score float);
    ​
    注意:数据库不支持严格的数据类型检查,数据类型写错了,创建是能够成功的,不会有错误提示;
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    71.3.2 删除表格

    drop table 表名;
    ​
    eg:
        drop table stu1;
    
    • 1
    • 2
    • 3
    • 4

    71.3.3 插入记录

    • 字符串类型可以使用单引号,也可以使用双引号
    1) 全字段插入
        insert into 表名 values (数据1, 数据2, 数据3);
        eg:
            INSERT INTO stu VALUES (2, 'ls', 99);
            INSERT INTO stu VALUES (1, "zs", 59);
        注意:
            1.数据输入的顺序要与创建时候字段的顺序一致;
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    2) 部分字段插入
        insert into 表名 (字段名1, 字段名2) values (数据1, 数据2);
        eg:
            INSERT INTO stu (id, name) values (9, 'ww');
        注意:
            1.数据的顺序要与指定的字段名1,字段名2对应;
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    71.3.4 查看记录

    • .header on 打开表头
    • .mode column 对齐
    • 在终端输入shell指令:sqlitebrowser sq.db 图形化界面
    1) 查看所有记录
        select * from 表名;
        eg:
            SELECT * FROM stu;
    
    • 1
    • 2
    • 3
    • 4
    2) 查看某几行
        select * from 表名 where 限制条件;
        逻辑与 and     逻辑或 or
        eg:
            SELECT * FROM stu WHERE id<3 AND score>90;
            SELECT * FROM stu WHERE id<2 OR id>3;
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    3) 查看某几列
        select 字段1, 字段2 from 表名;
        select 字段1, 字段2 from 表名 where 限制条件;
        eg:
            SELECT id, name FROM stu;
            SELECT id, name FROM stu WHERE score>90;
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    71.3.5 修改记录

    update 表名 set 字段=数值 where 限制条件;
    ​
    eg:
        UPDATE stu SET score=60 WHERE id=1;
    
    • 1
    • 2
    • 3
    • 4

    71.3.6 删除记录

    delete from 表名 where 限制条件;
    ​
    eg:
        DELETE FROM stu WHERE id=1;
        delete from stu;    删除表格中的所有数据;
    
    • 1
    • 2
    • 3
    • 4
    • 5

    71.3.7 主键(primary key)

    primary key 主键;
    create table 表名(字段名 数据类型 primary key, 字段名 数据类型);
    primary key主键:唯一标识表格中的每一条记录;
                例如:id字段为主键,当表格中有id==1的记录时,不允许再插入id为1的记录了;
    eg:
        CREATE TABLE stu (id int PRIMARY KEY, name char, score float);
    ​
    注意:主键的值必须唯一。每一张表格都应该设置一个主键,而且只能设置一个。
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    71.3.8 拷贝

    从a中拷贝所有数据到b中:
        create table b as select * from a;
    从a中拷贝指定字段到b中:
        create table b as select 字段,字段,字段 from a;CREATE TABLE stu1 AS SELECT * FROM stu;
     CREATE TABLE stu2 AS SELECT id, name, score FROM stu;
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    71.3.9 增加列

    alter table 表名 add column 字段名 数据类型;
         alter table stu add column score int;
    
    • 1
    • 2

    71.3.10 修改表名

    alter table 旧表名 rename to 新表名;
      alter table stu rename to stuinfo;
    
    • 1
    • 2

    71.3.11 修改字段名(列名)

    不支持直接修改列名
    1.将表重新命名(a改成b)
        alter table stuinfo rename to stu;
    2.新建修改名字后的表(新建一个a)
        create table stuinfo (name char, age1 int, sex char, score int);
    3.从旧表b中取出数据,插入到新表a中;
        insert into stuinfo select * from stu;
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    71.3.12 删除列

    不支持直接删除列;
    1.创建一个新表b,并复制旧表a需要保留的字段信息;
        create table stu as select name, age1, sex from stuinfo;
    2.删除旧表a;
        drop table stuinfo;
    3.修改新表b的名字a;
        alter table stu rename to stuinfo;
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    71.4 sqlite3 API

    71.4.1 官网

    https://www.sqlite.org/index.html

    在这里插入图片描述

    71.4.2 sqlite3的C - APIs

    头文件:
        #include 
    编译时候要加上-lsqlite3
        gcc a.c -lsqlite3
    
    • 1
    • 2
    • 3
    • 4

    71.4.2.1 sqlite3_open

    功能:
    	打开一个数据库;
    原型:
        int sqlite3_open(
          const char *filename,   /* Database filename (UTF-8) */
          sqlite3 **ppDb          /* OUT: SQLite db handle */
        );
    参数:
        char *filename:指定要打开的数据库的路径及名字;
        sqlite3 **ppDb: 需要定义一个一级指针,取地址传入。
        等函数运行完毕后,该一级指针中会存储打开的数据库所加载在内存中的首地址;
        
    返回值:
        成功,返回0,SQLITE_OK;
        失败,返回error_code,注意不是errno,所以无法用perror打印错误信息;
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15

    71.4.2.2 sqlite3_close

    功能:
    	关闭数据库,同时释放数据库对应的内存空间
    原型:
        int sqlite3_close(sqlite3 *db);
    参数:
        sqlite3 *db:指定要释放的数据库的首地址;
    返回值:
        成功,返回0,SQLITE_OK;
        失败,返回error_code,注意不是errno,所以无法用perror打印错误信息;
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    71.4.2.3 sqlite3_errmsg

    功能:
    	根据error_code获取对应的错误信息;
    原型:
        const char *sqlite3_errmsg(sqlite3 *db);
    参数:
    返回值:
        获取到的错误信息;
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    71.4.2.4 sqlite3_errcode

    功能:
    	获取错误码
    原型:
        int sqlite3_errcode(sqlite3 *db);
    参数:
    返回值:
        获取到的错误码
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    在这里插入图片描述

    71.4.2.5 sqlite3_exec

    功能:
    	执行一条sql语句;
    原型:
        int sqlite3_exec(
          sqlite3 *db,                                  /* An open database */
          const char *sql,                              /* SQL to be evaluated */
          int (*callback)(void*,int,char**,char**),     /* Callback function */
          void *arg,                                    /* 1st argument to callback */
          char **errmsg                                 /* Error msg written here */
        );
    参数:
        sqlite3 *db:打开的数据库句柄指针;
        char *sql:要被执行的sql语句;
        int (*callback)(void*,int,char**,char**):函数指针,
    			该指针可以指向返回值是int类型,参数列表是(void*,int,char**,char**)函数
    			该指针只有在sql语句是查询相关语句时候有效,其余时候填NULL;
    			例如: int function(void*,int,char**,char**) {}  
        void *arg:传递给回调函数的第一个参数,
        char **errmsg:错误信息;                                                                                                                                                                                                                                    
    返回值:
        成功,返回0,SQLITE_OK;
        失败,返回error_code,注意不是errno,所以无法用perror打印错误信息;
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22

    71.4.2.6 回调函数

    The 2nd argument to the sqlite3_exec() callback function is the number of columns in the result. 
    The 3rd argument to the sqlite3_exec() callback is an array of pointers to strings obtained as if from sqlite3_column_text(), one for each column. 
    If an element of a result row is NULL then the corresponding string pointer for the sqlite3_exec() callback is a NULL pointer. 
    The 4th argument to the sqlite3_exec() callback is an array of pointers to strings where each entry represents the name of corresponding result column as obtained from sqlite3_column_name().
    
    • 1
    • 2
    • 3
    • 4

    在这里插入图片描述

    int callBack(void *arg, int ncolumns, char **column_text, char **column_name)
    功能:
    	每当有一条满足条件的记录时,该回调函数就会被调用一次;
    参数:
        void *arg:sqlite3_exec函数的第四个参数传入的;
        int ncolumns:查询结果的列数;
        char **column_text:该二级指针指向一个指针数组,
        		该数组中的每一个元素都是char*类型,每个char*元素指向的是查询到的内容。
        char **column_name:该二级指针指向一个指针数组,
        		该数组中的每一个元素都是char*类型,每个char*元素指向的是列的名字;  
    返回值:
        必须返回0,该返回值是返回给sqlite3_exec的,
        若不返回0,则让sqlite3_exec认为回调函数运行失败,
        从而导致sqlite3_exec函数运行失败;                
        
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15

    71.4.2.7 sqlite3_get_table

    
    
    • 1

    71.4.2.1

    功能:
    	执行查询相关的sql语句;
    原型:
        int sqlite3_get_table(
          sqlite3 *db,          /* An open database */
          const char *zSql,     /* SQL to be evaluated */
          char ***pazResult,    /* Results of the query */
          int *pnRow,           /* Number of result rows written here */
          int *pnColumn,        /* Number of result columns written here */
          char **pzErrmsg       /* Error msg written here */
        );
    参数:
        sqlite3 *db:;
        char *zSql:要被执行的sql语句,且只能是查询相关的sql语句;
        char ***pazResult:该三级指针指向的二级指针最终会存储查询到的结果的首地址;
        int *pnRow:该一级指针指向的普通变量最终会存储查询结果的行数;
        int *pnColumn:该一级指针指向的普通变量最终会存储查询结果的列数;
        char **pzErrmsg:错误信息;
    返回值:
        成功,返回0,SQLITE_OK;
        失败,返回error_code,注意不是errno,所以无法用perror打印错误信息;
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21

    71.4.2.8 sqlite3_free_table

    功能:
    	释放sqlite3_get_table获取到的查询内容
    原型:
        void sqlite3_free_table(char **result);
    参数:
    返回值:
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    71.4.2.9 示例代码

    #include 
    #include 
    
    int do_insert(sqlite3* db);
    int do_select(sqlite3* db);
    
    int main(int argc, const char *argv[])
    {
        //创建并打开数据库
        sqlite3* db = NULL;
        if(sqlite3_open("./my.db", &db) != SQLITE_OK)
        {
            fprintf(stderr, "sqlite3_open: %d : %s  __%d__\n", \
                    sqlite3_errcode(db), sqlite3_errmsg(db), __LINE__);
            return -1;
        }
        printf("database open success __%d__\n", __LINE__);
    
        //创建一张表格 "create table stu (id int, name char, score float);"
        //数据库中sql语句怎么写,代码中sql语句就怎么写,最后的;可以省略不写;
        char sql[128] = "create table if not exists stu (id int, name char, score float);";
        char* errmsg = NULL;
                                                                                                                                           
        if(sqlite3_exec(db, sql, NULL, NULL, &errmsg) != SQLITE_OK)
        {
            fprintf(stderr, "sqlite3_exec: %s __%d__\n", errmsg, __LINE__);
            return -1;
        }
        printf("create table stu success __%d__\n", __LINE__);
    
        char choose = 0;
        while(1)
        {
            printf("----------------------\n");
            printf("--------1. 插入-------\n");
            printf("--------2. 删除-------\n");
            printf("--------3. 修改-------\n");
            printf("--------4. 查询-------\n");
            printf("--------5. 退出-------\n");
            printf("----------------------\n");
            printf("请输入>>> ");
            choose = getchar();
            while(getchar()!=10);
    
            switch(choose)
            {
            case '1':
                do_insert(db);
                break;
            case '2':
                //do_delete();
                break;
            case '3':
                //do_update();
                break;
            case '4':
                do_select(db);
                break;
            case '5':
                goto END;
            }
        }
    
    END:
        //关闭数据库
        if(sqlite3_close(db) != SQLITE_OK)
        {
            fprintf(stderr, "sqlite3_close: %d : %s  __%d__\n", \
                    sqlite3_errcode(db), sqlite3_errmsg(db), __LINE__);
            return -1;
        }
        printf("database close success __%d__\n", __LINE__);
        return 0;
    }
    
    int do_select(sqlite3* db)
    {
        char sql[128] = "select * from stu;";
        char** pres = NULL;
        int row, column;
        char* errmsg = NULL;
    
        if(sqlite3_get_table(db, sql, &pres, &row, &column, &errmsg) != SQLITE_OK)
        {
            fprintf(stderr, "sqlite3_get_table: %s __%d__\n", errmsg, __LINE__);
            return -1;
        }
        printf("查询完毕\n");
    
        printf("row=%d column=%d  pres=%p\n", row, column, pres);
    
        //pres中包含表头的那一行
        for(int i=0; i<(row+1)*column; i++)
        {
            printf("%s\t", pres[i]);
    
            if((i+1)%column == 0)
                putchar('\n');
        }
    
        printf("===================\n");
        for(int i=0; i<row+1; i++)
        {
            for(int j=0; j<column; j++)
            {
                printf("%s\t", pres[(i*column)+j]);
            }
            putchar(10);
        }
    
        //释放内存空间
        sqlite3_free_table(pres);
    
        return 0;
    }
    
    #if 0
    //查询时候的回调函数
    //每当有一条满足条件的记录时,该回调函数就会被调用一次;
    int callBack(void *arg, int ncolumns, char **column_text, char **column_name)   //void* arg = &flag;
    {
        //满足条件的列数
        //printf("%d __%d__\n", ncolumns, __LINE__);
    
        if(0 == *(int*)arg)
        {
            //表头
            for(int i=0; i<ncolumns; i++)
            {
                printf("%s\t", column_name[i]);
            }
            putchar(10);
    
            *(int*)arg = 1;
        }
    
        //查询结果
        for(int i=0; i<ncolumns; i++)
        {
            printf("%s\t", column_text[i]);
        }
        putchar(10);
    
        return 0;   
        //必须返回0,该返回值是返回给sqlite3_exec的,
        //若不返回0,则让sqlite3_exec认为回调函数运行失败,
        //从而导致sqlite3_exec函数运行失败;
    }
    
    int do_select(sqlite3* db)
    {
        char sql[128] = "select * from stu;";
        char* errmsg = NULL;
        int flag = 0;
    
        if(sqlite3_exec(db, sql, callBack, &flag, &errmsg) != SQLITE_OK)
        {
            fprintf(stderr, "sqlite3_exec: %s __%d__\n", errmsg, __LINE__);
            return -1;
        }
        printf("select stu success __%d__\n", __LINE__);
    
        return 0;
    }
    #endif
    
    int do_insert(sqlite3* db)
    {
        int id;
        char name[20];
        float score;
        printf("请输入id name score >>> ");
        scanf("%d %s %f", &id, name, &score);
        while(getchar()!=10);
    
        char sql[128] = "";
        char* errmsg = NULL;
        sprintf(sql, "insert into stu values(%d, \"%s\", %g);", id, name, score);
        printf("sql = %s\n", sql);
    
        if(sqlite3_exec(db, sql, NULL, NULL, &errmsg) != SQLITE_OK)
        {
            fprintf(stderr, "sqlite3_exec: %s __%d__\n", errmsg, __LINE__);
            return -1;
        }
        printf("insert into stu success __%d__\n", __LINE__);
    
        return 0;
    }                                                                                                                         
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
  • 相关阅读:
    pytest学习和使用8-fixture如何实现teardown功能?(yield的使用)
    蓝桥杯练习
    装了mac os 14.0 sonoma 在腾讯会议投屏时候,无法设置麦克风权限问题
    VUE3 -- v-model理解:
    AnyTransition/过渡动画, MatchedGeometryEffect/匹配几何动画效果 的使用
    k8s 集群安装(vagrant + virtualbox + CentOS8)
    C算法:输入一个数n,输出1到n之间所有的质数
    R语言中不同类型的聚类方法比较
    代码随想录图论部分-695. 岛屿的最大面积|1020. 飞地的数量
    阿里云视频点播介绍
  • 原文地址:https://blog.csdn.net/qq_52625576/article/details/133653687