一、SQLite3自带命令(以"."开头,不需要逗号结束)
1 .separator *** //更改列分割线
2 .exit / .quit //退出数据库
3 .mode column //按列显示
4 .mode line //按行显示
5 .mode html //按HTML显示
6 .mode insert 表名 //按插入数据库SQL语句格式显示
7 .header on / off //表头打开/关闭
8 .width x1 x2 ...xn //用来设置各行的宽度
9 .output 文件名 //查询结果保存在文件中
10 .output stdio //查询结果输出到屏幕
11 .tables //列出数据库所包含的所有表
12 .indices 表名 //列出一张表所包含的所有索引
13 .schema //列出创建数据库所使用的create语句
14 .databases //列出所有打开的数据库
15 .dump //输出SQL脚本,可用来在其他数据库中重新构建数据库
16 .explain //查询一条SQL语句最终解析出来的执行计划
17 .timeout //默认超时时间是0,查询一张表或索引,发现表或索引被锁定,就立刻返回,不等待;可以指定访问表的超时时间
二、SQL语句(逗号结束)
1 select * from 表名; //显示一张表
2 select * from 表名 where 关键字 <='5'; //查询表中关键字小于等于5的记录
3 select * from 表名 where 关键字 like ‘%XXX%'; //查询表中关键字包含XXX的记录
4 insert into 表名 values(值); //在表中插入一条记录
5 update mytable set name='huangbin' where id=1; //更改id=1的记录的名字
6 delete from 表名 where 关键字 = 'XXX'; //删除关键字为XXX
三、SQLite3 C语言API
1 int sqlite3_open(const char *filename, sqlite3 **ppDb);
filename ----- 数据库文件名
ppDb ----- 数据库文件句柄指针
2 int sqlite3_exec(sqlite3* ppDb, const char *sql, int (*callback)(void*,int,char**,char**), void * prm, char **errmsg);
ppDb ----- 打开的数据库文件句柄
sql ----- 要执行的SQL语句
callback ----- 回调函数,一般用于输出查询结果(可设为NULL)
prm ----- 回调函数的参数(可设为NULL)
errmsg ----- 错误信息
3 typedef int(*sqlite3_callback)(void*,int,char**,char**);
sqlite3的回调函数必须定义成上面这个函数的类型,sqlite 每查到一条记录,就调用一次这个回调。
int callback(void* para, int n_column, char** column_value, char** column_name);
para-----sqlite3_exec 里传入的void*参数通过para参数,你可以传入一些特殊的指针(比如类指针、结构指针),然后在这里面强制转换成对应 的类型(这里面是void*类型,必须强制转换成你的类型才可用)。然后操作这些数据
n_column-----是这一条记录有多少个字段(即这条记录有多少列)
column_value-----是个关键值,查出来的数据都保存在这里,它实际上是个1维数组(不要以为是2维数组),每一个元素都是一个char*值,是 一个字段内容(用字符串来表示,以\0结尾)
column_name -----和column_value是对应的,表示这个字段的字段名称
4 int sqlite3_get_table(sqlite3 *ppDb, const char *sql, char ***Result, int *Row, int *Column, char **Errmsg);
ppDb ----- 打开的数据库文件句柄
sql ----- 要执行的SQL语句
Result ----- 查询结果返回指针
Row ----- 返回的记录有多少行
Column ----- 返回的记录有多少列
Errmsg ----- 错误信息
5 void sqlite3_free_table(char **Result); //释放当前查询的记录集所占用的内存
Result ----- 查询结果返回指针
6 int sqlite3_close(sqlite3 *ppDb);
ppDb ----- 数据库文件句柄指针
7 char *sqlite3_mprintf(const char *, va_list);
int sqlite3_free(char *);
sqlite3_mprintf( )的功能类似于sprintf( )函数,它们主要区别在于sprintf对存储的目标字符串需要先分配内存,而sqlite3_mprintf函数内已封装了内存 分配操作,返回目标字符串的内存首地址。
sqlite3_mprintf( )与sqlite3_free( )总是成对出现,否则会造成内存泄露。
char *sql = NULL;
sql = sqlite3_mprintf("delete from %s where %s = %d;", val1, val2, val3);
sqlite3_free(sql);
实例1
#include <iostream>
using namespace std;
#include "sqlite/sqlite3.h"
int callback(void*,int,char**,char**);
int main()
{
sqlite3* db;
int nResult = sqlite3_open("test.db",&db);
if (nResult != SQLITE_OK)
{
cout<<"打开数据库失败:"<<sqlite3_errmsg(db)<<endl;
return 0;
}
else
{
cout<<"数据库打开成功"<<endl;
}
char* errmsg;
nResult = sqlite3_exec(db,"create table fuck(id integer primary key autoincrement,name varchar(100))",NULL,NULL,&errmsg);
if (nResult != SQLITE_OK)
{
sqlite3_close(db);
cout<<errmsg;
sqlite3_free(errmsg);
return 0;
}
string strSql;
strSql+="begin;\n";
for (int i=0;i<100;i++)
{
strSql+="insert into fuck values(null,'heh');\n";
}
strSql+="commit;";
//cout<<strSql<<endl;
nResult = sqlite3_exec(db,strSql.c_str(),NULL,NULL,&errmsg);
if (nResult != SQLITE_OK)
{
sqlite3_close(db);
cout<<errmsg<<endl;
sqlite3_free(errmsg);
return 0;
}
strSql = "select * from fuck";
nResult = sqlite3_exec(db,strSql.c_str(),callback,NULL,&errmsg);
if (nResult != SQLITE_OK)
{
sqlite3_close(db);
cout<<errmsg<<endl;
sqlite3_free(errmsg);
return 0;
}
sqlite3_close(db);
return 0;
}
int callback(void* ,int nCount,char** pValue,char** pName)
{
string s;
for(int i=0;i<nCount;i++)
{
s+=pName[i];
s+=":";
s+=pValue[i];
s+="\n";
}
cout<<s<<endl;
return 0;
}
实例2
#include <iostream>
using namespace std;
#include "sqlite/sqlite3.h"
int callback(void*,int,char**,char**);
int main()
{
sqlite3* db;
int nResult = sqlite3_open("test.db",&db);
if (nResult != SQLITE_OK)
{
cout<<"打开数据库失败:"<<sqlite3_errmsg(db)<<endl;
return 0;
}
else
{
cout<<"数据库打开成功"<<endl;
}
char* errmsg;
nResult = sqlite3_exec(db,"create table fuck(id integer primary key autoincrement,name varchar(100))",NULL,NULL,&errmsg);
if (nResult != SQLITE_OK)
{
sqlite3_close(db);
cout<<errmsg;
sqlite3_free(errmsg);
return 0;
}
string strSql;
strSql+="begin;\n";
for (int i=0;i<100;i++)
{
strSql+="insert into fuck values(null,'heh');\n";
}
strSql+="commit;";
//cout<<strSql<<endl;
nResult = sqlite3_exec(db,strSql.c_str(),NULL,NULL,&errmsg);
if (nResult != SQLITE_OK)
{
sqlite3_close(db);
cout<<errmsg<<endl;
sqlite3_free(errmsg);
return 0;
}
strSql = "select * from fuck";
//nResult = sqlite3_exec(db,strSql.c_str(),callback,NULL,&errmsg);
char** pResult;
int nRow;
int nCol;
nResult = sqlite3_get_table(db,strSql.c_str(),&pResult,&nRow,&nCol,&errmsg);
if (nResult != SQLITE_OK)
{
sqlite3_close(db);
cout<<errmsg<<endl;
sqlite3_free(errmsg);
return 0;
}
string strOut;
int nIndex = nCol;
for(int i=0;i<nRow;i++)
{
for(int j=0;j<nCol;j++)
{
strOut+=pResult[j];
strOut+=":";
strOut+=pResult[nIndex];
strOut+="\n";
++nIndex;
}
}
sqlite3_free_table(pResult);
cout<<strOut<<endl;
sqlite3_close(db);
return 0;
}
/*
int callback(void* ,int nCount,char** pValue,char** pName)
{
string s;
for(int i=0;i<nCount;i++)
{
s+=pName[i];
s+=":";
s+=pValue[i];
s+="\n";
}
cout<<s<<endl;
return 0;
}