当前位置:   article > 正文

sqlite3基础命令笔记_sqlite3命令使用

sqlite3命令使用

一、基础用法:

  1. 当前目录下建立或打开test.db数据库文件,并进入sqlite命令终端,以sqlite>前缀标识:
  2. #sqlite3 test.db
  3. 查看数据库文件信息命令(注意命令前带字符'.'):
  4. sqlite>.database
  5. 查看所有表的创建语句:
  6. sqlite>.schema
  7. 查看指定表的创建语句:
  8. sqlite>.schema table_name
  9. 以sql语句的形式列出表内容:
  10. sqlite>.dump table_name
  11. 设置显示信息的分隔符:
  12. sqlite>.separator symble
  13. Example:设置显示信息以‘:’分隔
  14. sqlite>.separator :
  15. 设置显示模式:
  16. sqlite>.mode mode_name
  17. Example:默认为list,设置为column,其他模式可通过.help查看mode相关内容
  18. sqlite>.mode column
  19. 输出帮助信息:
  20. sqlite>.help
  21. 设置每一列的显示宽度:
  22. sqlite>.width width_value
  23. Example:设置宽度为2
  24. sqlite>.width 2
  25. 列出当前显示格式的配置:
  26. sqlite>.show
  27. 退出sqlite终端命令:
  28. sqlite>.quit
  29. sqlite>.exit

二、基操:

filed  ---> 表示表中每一项名字

1、建表
  1. create table 表名 if not exists(field1 type1, field2 type2, ...);
  2. table_name是要创建数据表名称,fieldx是数据表内字段名称,typex则是字段类型。
  3. 例,建立一个简单的学生信息表,它包含学号与姓名等学生信息:
  4. create table student_info(stu_no interger primary key, name text);
2、添加数据
  1. insert into 表名(field1, field2, ...) values(val1, val2, ...);
  2. valx为需要存入字段的值。
  3. 例,往学生信息表添加数据:
  4. Insert into student_info(stu_no, name) values(0001, 'alex');
  5. Insert into student_info(stu_no, name) values(0003, 'lc');
3、修改数据记录
  1. update 表名 set field1=val1, field2=val2 where expression;
  2. where是sql语句中用于条件判断的命令,expression为判断表达式
  3. 例,修改学生信息表学号为0001的数据记录:
  4. update student_info set stu_no=0001, name='hence' where stu_no=0001;
4、删除数据记录
  1. delete from 表名 where expression;
  2. 不加判断条件则清空表所有数据记录。
  3. 例,删除学生信息表学号为0001的数据记录:
  4. delete from student_info where stu_no=0001;
5、查询数据记录
  1. select指令基本格式:
  2. select columns from 表名 [where expression];
  3. a 查询输出所有数据记录
  4. select * from 表名;
  5. b 限制输出数据记录数量 val =3 查询前三行
  6. select * from 表名 limit val;
  7. c 升序输出数据记录
  8. select * from 表名 order by field asc;
  9. d 降序输出数据记录
  10. select * from 表名 order by field desc;
  11. e 条件查询
  12. select * from 表名 where expression;
  13. select * from 表名 where field in ('val1', 'val2', 'val3');
  14. select * from 表名 where field between val1 and val2;
  15. f 查询记录数目
  16. select count (*) from 表名;
  17. g 区分列数据
  18. select distinct field from 表名;
  19. 有一些字段的值可能会重复出现,distinct去掉重复项,将列中各字段值单个列出。
6、增加一个字段addr
  1. alter table 表名 add column addr type;
  2. 例如在food表中添加一个count列
  3. alter table food add column count int;
 7、改变表名
alter table 旧表名 rename to  新表名; 
8、建立索引
  1. 当说数据表存在大量记录,索引有助于加快查找数据表速度。
  2. create index index_name on 表名(field);
  3. 例,针对学生表stu_no字段,建立一个索引:
  4. create index student_index on student_table(stu_no);
  5. 建立完成后,sqlite3在对该字段查询时,会自动使用该索引。
9、删除数据表或者索引
  1. drop table 表名;
  2. drop index 索引名;
10、时间类型插入数据库表中
  1. DATETIME TIMESTAMP 用来存储日期/时间的不限制长度的字符串类型.
  2. 要求的格式是 ‘YYYY-MM-DD HH:MM:SS’,其他的东西被忽略.
  3. create table tablename (id int,time DATETIME);
  4. insert into tablename values(1003,datetime('now')); 插入1003和当前系统时间到表中
  5. select * from tablename where time between '2018-01-10' and '2018-01-19'; 查询表中在2018-01-10208-01-19号之间所有数据
  6. select id from tablename where time > '2018-01-10 15:29:06'; 查询tablename表中时间大于2018-01-10 15:29:06的所有id项数据

三、sqlite3 函数使用

1、打开数据库
  1. 打开数据库链接sqlite3_open用法
  2. 原型:
  3. int sqlite3_open(
  4. const char *filename, /* Database filename (UTF-8) */
  5. sqlite3 **ppDb /* OUT: SQLite db handle */
  6. );
  7. 参数一:
  8. 数据库文件名字,不一定存在,不存在会自动创建
  9. 参数二:
  10. 第二个参数是一个 sqlite3 ** 类型的指针,用来接收打开的数据库连接对象。如果打开或创建成功,该指针会被设置为指向该连接对象的指针;如果打开或创建失败,该指针会被设置为空值(NULL)。
  11. 返回值:
  12. 如果是SQLITE_OK则表示操作正常
2、关闭数据库
  1. 关闭数据库链接sqlite3_close用法
  2. 原型:
  3. int sqlite3_close(sqlite3 *ppDb);
  4. ppDb为刚才使用sqlite3_open打开的数据库链接
3、sql操作sqlite3_exec用法
  1. 执行sql操作sqlite3_exec用法
  2. 原型:
  3. int sqlite3_exec(
  4. sqlite3* ppDb, /* An open database */
  5. const char *sql, /* SQL to be evaluated */
  6. int (*callback)(void*,int,char**,char**), /* Callback function */
  7. void *, /* 1st argument to callback */
  8. char **errmsg /* Error msg written here */
  9. );
  10. 这就是执行一条sql 语句的函数。
  11. 参数:
  12. 1个参数是前面open函数得到的指针。
  13. 2个参数constchar*sql是一条sql 语句,以\0结尾。
  14. 3个参数sqlite3_callback 是回调,当这条语句执行之后,sqlite3会去调用你提供的这个函数。
  15. 4个参数void*是你所提供的指针,你可以传递任何一个指针参数到这里,这个参数最终会传到回调函数里面,如果不需要传递指针给回调函数,可以填NULL。等下我们再看回调函数的写法,以及这个参数的使用。
  16. 5个参数char** errmsg 是错误信息。注意是指针的指针。sqlite3里面有很多固定的错误信息。执行sqlite3_exec 之后,执行失败时可以查阅这个指针(直接cout<<errmsg得到一串字符串信息,这串信息告诉你错在什么地方。sqlite3_exec函数通过修改你传入的指针的指针,把你提供的指针指向错误提示信息,这样sqlite3_exec函数外面就可以通过这个char*得到具体错误提示。


PS:通常,sqlite3_callback 和它后面的void*这两个位置都可以填NULL。填NULL表示你不需要回调。比如你做insert 操作,做delete操作,就没有必要使用回调。而当你做select 时,就要使用回调,因为sqlite3 把数据查出来,得通过回调告诉你查出了什么数据。

4、exec 的回调
  1. typedef int(*sqlite3_callback)(void*,int,char**,char**);
  2. 你的回调函数必须定义成上面这个函数的类型。下面给个简单的例子:
  3. //sqlite3的回调函数
  4. //sqlite 每查到一条记录,就调用一次这个回调
  5. int LoadMyInfo(void* para,intn_column,char** column_value,char** column_name);
  6. //para是你在sqlite3_exec 里传入的void*参数通过para参数,你可以传入一些特殊的指针(比如类指针、结构指针),
  7. //然后在这里面强制转换成对应的类型(这里面是void*类型,必须强制转换成你的类型才可用)。然后操作这些数据
  8. //n_column是这一条记录有多少个字段(即这条记录有多少列)
  9. //char** column_value 是个关键值,查出来的数据都保存在这里,它实际上是个1维数组(不要以为是2维数组),
  10. //每一个元素都是一个char*值,是一个字段内容(用字符串来表示,以\0结尾)
  11. //char** column_name 跟column_value是对应的,表示这个字段的字段名称
5、示例
  1. C++测试:
  2. #include <iostream>
  3. using namespace std;
  4. #include "sqlite/sqlite3.h"
  5. int callback(void*,int,char**,char**);//回调函数申明
  6. int main()
  7. {
  8. // ppDb:句柄(指针),用来表示数据库的地址
  9. sqlite3* db;
  10. //成功则返回SQLITE_OK的宏
  11. int nResult = sqlite3_open("test.db",&db);
  12. if (nResult != SQLITE_OK)
  13. {
  14. cout<<"打开数据库失败:"<<sqlite3_errmsg(db)<<endl;
  15. return 0;
  16. }
  17. else
  18. {
  19. cout<<"数据库打开成功"<<endl;
  20. }
  21. //错误信息的存放
  22. char* errmsg;
  23. //exec函数族的调用。
  24. nResult = sqlite3_exec(db,"create table fxck(id integer primary key autoincrement,name varchar(100))",NULL,NULL,&errmsg);
  25. if (nResult != SQLITE_OK)
  26. {
  27. sqlite3_close(db);
  28. cout<<errmsg;
  29. sqlite3_free(errmsg);
  30. return 0;
  31. }
  32. string strSql;
  33. strSql+="begin;\n";
  34. for (int i=0;i<100;i++)
  35. {
  36. strSql+="insert into fuck values(null,'heh');\n";
  37. }
  38. strSql+="commit;";
  39. //cout<<strSql<<endl;
  40. nResult = sqlite3_exec(db,strSql.c_str(),NULL,NULL,&errmsg);
  41. if (nResult != SQLITE_OK)
  42. {
  43. sqlite3_close(db);
  44. cout<<errmsg<<endl;
  45. sqlite3_free(errmsg);
  46. return 0;
  47. }
  48. //查看表中所有数据
  49. strSql = "select * from fuck";
  50. //回调函数
  51. nResult = sqlite3_exec(db,strSql.c_str(),callback,NULL,&errmsg);
  52. if (nResult != SQLITE_OK)
  53. {
  54. sqlite3_close(db);
  55. cout<<errmsg<<endl;
  56. sqlite3_free(errmsg);
  57. return 0;
  58. }
  59. sqlite3_close(db);
  60. return 0;
  61. }
  62. int callback(void* ,int nCount,char** pValue,char** pName)
  63. {
  64. string s;
  65. for(int i=0;i<nCount;i++)
  66. {
  67. s+=pName[i];
  68. s+=":";
  69. s+=pValue[i];
  70. s+="\n";
  71. }
  72. cout<<s<<endl;
  73. return 0;
  74. }

C语言测试:

  1. //exec族函数
  2. char sql[100];
  3. snprintf(sql, sizeof(sql), "SELECT *FROM group_usr where name != '%s'",request->username);
  4. // data_t request_send = request;
  5. //exec第三个参数表示回调函数地址,第四个为回调函数第一参数,
  6. int req = sqlite3_exec(db,sql,callback_func_grop,request,NULL);
  7. if (req != SQLITE_OK) {
  8. fprintf(stderr, "无法执行发送操作: %s\n", sqlite3_errmsg(db));
  9. }
  10. //回调函数
  11. int value;
  12. int callback_func_grop(void* arg,int column,char**fd, char** name){
  13. sleep(1);
  14. int i=0;
  15. printf("回调函数发送信息1\n");
  16. char *p;
  17. //定义接收结构体,打包发送信息
  18. data_t* abg = (data_t*)arg;
  19. data_t other;
  20. other.work = 4;
  21. //strcpy(other.othername,abg->othername);
  22. strcpy(other.msg,abg->msg);
  23. //printf("列的数目有%d个\n",column);
  24. printf("回调函数发送信息2\n");
  25. //for(i=0;i<column;i++){}
  26. //int* callback_result =(int*)malloc(10);
  27. // *callback_result = atoi(fd[i]);
  28. value = atoi(fd[i]);
  29. strcpy(p,pack_user(other));
  30. printf("%d",value);
  31. int jg=send(value,p, strlen(p), 0);
  32. if(jg < 0||jg ==0){
  33. printf("发送失败\n");
  34. }
  35. bzero(p,strlen(p));
  36. return 0;
  37. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/490835
推荐阅读
  

闽ICP备14008679号