ubuntu 下的sqlite3

What Is SQLite?

SQLite is a C-language library that implements a small, fast, self-contained, high-reliability, full-featured, SQL database engine. SQLite is the most used database engine in the world

ps:SQLite Home Page

sqlite3 的安装:

bash 复制代码
user@user-virtual-machine:~$ sqlite3

Command 'sqlite3' not found, but can be installed with:

sudo apt install sqlite3

user@user-virtual-machine:~$ sudo apt install sqlite3

还需要安装开发库呢

bash 复制代码
sudo apt-get update
sudo apt-get install libsqlite3-dev

可视化工具:sudo apt-get install sqlitebrowser

命令行方式创建表:

bash 复制代码
$ sqlite3 ex1
SQLite version 3.36.0 2021-06-18 18:36:39
Enter ".help" for usage hints.
sqlite> create table tbl1(one text, two int);
sqlite> insert into tbl1 values('hello!',10);
sqlite> insert into tbl1 values('goodbye', 20);
sqlite> select * from tbl1;
hello!|10
goodbye|20
sqlite>

ps:Command Line Shell For SQLite : Command Line Shell For SQLite

程序方式创建数据库与表:

Below is a simple C program that demonstrates how to use the C/C++ interface to SQLite. The name of a database is given by the first argument and the second argument is one or more SQL statements to execute against the database. The function calls to pay attention to here are the call to sqlite3_open() on line 22 which opens the database, sqlite3_exec() on line 28 that executes SQL commands against the database, and sqlite3_close() on line 33 that closes the database connection

cpp 复制代码
01  #include <stdio.h>
02  #include <sqlite3.h>
03  
04  static int callback(void *NotUsed, int argc, char **argv, char **azColName){
05    int i;
06    for(i=0; i<argc; i++){
07      printf("%s = %s\n", azColName[i], argv[i] ? argv[i] : "NULL");
08    }
09    printf("\n");
10    return 0;
11  }
12  
13  int main(int argc, char **argv){
14    sqlite3 *db;
15    char *zErrMsg = 0;
16    int rc;
17  
18    if( argc!=3 ){
19      fprintf(stderr, "Usage: %s DATABASE SQL-STATEMENT\n", argv[0]);
20      return(1);
21    }
22    rc = sqlite3_open(argv[1], &db);
23    if( rc ){
24      fprintf(stderr, "Can't open database: %s\n", sqlite3_errmsg(db));
25      sqlite3_close(db);
26      return(1);
27    }
28    rc = sqlite3_exec(db, argv[2], callback, 0, &zErrMsg);
29    if( rc!=SQLITE_OK ){
30      fprintf(stderr, "SQL error: %s\n", zErrMsg);
31      sqlite3_free(zErrMsg);
32    }
33    sqlite3_close(db);
34    return 0;
35  }

测试:

bash 复制代码
./testSqlite hslg "create table tbl1(one text, two int)"

An Introduction To The SQLite C/C++ Interface:An Introduction To The SQLite C/C++ Interface

c连接sqlite 内容不多:

有兴趣的同学自己查官网去。

这里只对sqlite3_exec() 回调函数做个说明:

复制代码
int sqlite3_exec(
  sqlite3*,                                  /* An open database */
  const char *sql,                           /* SQL to be evaluated */
  int (*callback)(void*,int,char**,char**),  /* Callback function */
  void *,                                    /* 1st argument to callback */
  char **errmsg                              /* Error msg written here */
);

sqlite3_exec 函数是 SQLite 库中的一个重要函数,用于执行一条或多条 SQL 语句。这个函数允许用户指定一个回调函数,以便在 SQL 语句执行过程中(比如查询结果返回时),对每一行数据或特定的 SQL 命令执行结果进行处理。下面是对回调函数的详细说明:

回调函数原型

cpp 复制代码
int callback(void *NotUsed, int argc, char **argv, char **azColName);

参数说明

  • void *NotUsed
    • 这是一个传递给回调函数的用户定义指针,通常用于传递一些上下文信息或状态信息给回调函数。在 sqlite3_exec 的调用中,这个参数对应于第四个参数(void * 类型)。
    • 虽然在回调函数中这个参数被命名为 NotUsed(意味着在某些情况下可能不被使用),但它是非常有用的,特别是当你需要在回调函数中访问一些外部变量或对象时。
  • int argc
    • 表示当前行的列数。对于查询语句,这个值等于 SELECT 语句中选择的列数。
    • 对于非查询语句(如 INSERT、UPDATE、DELETE),这个值通常为 0,因为这些语句不返回数据行。
  • char **argv
    • 这是一个指向字符串数组的指针,数组中的每个元素都是一个指向列值的字符串。
    • argv[0]argv[argc-1] 包含了当前行的所有列值。
    • 对于非查询语句,argv 通常是 NULL。
  • char **azColName
    • 这是一个指向字符串数组的指针,数组中的每个元素都是一个指向列名的字符串。
    • azColName[0]azColName[argc-1] 包含了当前结果集的列名。
    • 这个数组对于在回调函数中区分不同的列非常有用。

返回值

  • 回调函数应该返回一个整数。如果返回非零值,sqlite3_exec 会立即停止执行,并返回这个非零值给它的调用者。这允许在回调函数内部基于某些条件提前终止 SQL 语句的执行。
  • 如果返回 0,sqlite3_exec 会继续执行下一条 SQL 语句(如果有的话),或者完成当前的执行。

使用场景

  • 当你需要处理查询结果集中的每一行数据时,可以在回调函数中实现逻辑。
  • 当你需要在执行某些 SQL 语句(如 INSERT、UPDATE、DELETE)后执行一些后处理逻辑时,也可以利用这个回调机制(尽管对于这类语句,argcargv 通常是 0)。
cpp 复制代码
int myCallback(void *NotUsed, int argc, char **argv, char **azColName) {
    for(int i = 0; i < argc; i++) {
        printf("%s = %s\n", azColName[i], argv[i] ? argv[i] : "NULL");
    }
    printf("\n");
    return 0; // 返回0表示继续执行
}

// 调用 sqlite3_exec
sqlite3_exec(db, "SELECT * FROM my_table;", myCallback, 0, &errmsg);

在这个示例中,myCallback 函数被用作 sqlite3_exec 的回调函数,用于打印查询结果集中的每一行数据。

test 方法:

1 插入值

2 调用查询 观察终端输出结果

cpp 复制代码
./testSqlite hslg "select * from tbl1"

运行效果:

相关推荐
quweiie3 分钟前
宝塔php8.3安装MongoDB扩展
数据库·mongodb
SEO-狼术33 分钟前
Aspose.Words for .NET 24 Crack
数据库
滴水之功1 小时前
VMware ubuntu16.04怎么设置静态IP联网
linux·ubuntu
mit6.8241 小时前
[Pro Git#3] 远程仓库 | ssh key | .gitignore配置
linux·git·ubuntu
air_7291 小时前
抓包分析DHCP的工作过程
linux·运维·服务器·网络·华为·dhcp
学Linux的语莫1 小时前
负载均衡,高可用,监控服务搭建总结
linux·服务器·分布式·ceph·lvs
Bug缔造者1 小时前
Jfinal项目整合Redis
数据库·redis·bootstrap
小技与小术1 小时前
docker搭建haproxy实现负载均衡
linux·运维·docker·容器·负载均衡
liuwufei1 小时前
数据仓库-基于角色的权限管理(RBAC)
数据库·数据仓库·oracle
唐可盐2 小时前
解决Centos7系统更新时报错:Could not resolve host: mirrorlist.centos.org; 未知的错误
linux·运维·centos