sqlite3 接口的核心元素: 两大对象,八大函数;
其中两个对象指的是:
sqlite3_stmt SQL 语句对象
#include
SQLITE_API int sqlite3_open(const char *filename,sqlite3 **ppDb);
sqlite3 * pDB = NULL; //用来表示你打开的数据库
//打开数据库
int ret = sqlite3_open(argv[1],&pDB);//打开或者创建一个数据库,返回一个数据库的连接对象
if(ret != SQLITE_OK)
{
printf("open sqlite3 database error\n");
return 0;
}
#include
SQLITE_API int sqlite3_close(sqlite3* ppDb);
//关闭数据库
sqlite3_close(pDB); //关闭一个 sqlite3 数据库
#include
SQLITE_API int sqlite3_prepare_v2(
sqlite3 *db, /* 数据库句柄 */
const char *zSql, /* SQL 语句,UTF-8 编码 */
int nByte, /* zSql 的最大长度,以字节为单位。 */
sqlite3_stmt **ppStmt, /* OUT:语句句柄 */
const char **pzTail /* OUT:指向 zSql 中未使用部分的指针,一般给 NULL*/
);
int num; //存放 ID
char name[20] = {0}; //存放 name
char Tel[20] = {0}; //存放电话号码
char sql[256] = {0}; //存放 sql 语句
memset(name,0,20);
memset(Tel,0,20);
scanf("%d%s%s",&num,name,Tel);
if(num == 0) //输入 0 结束
{
break;
}
memset(sql,0,20);
sprintf(sql,"INSERT INTO STU VALUES(%d,'%s','%s');",num,name,Tel);
sqlite3_stmt *stmt = NULL;//指针,指向一条语句对象
ret = sqlite3_prepare_v2(pDB,sql,-1,&stmt,NULL); //准备一个语句对象
if(ret != SQLITE_OK)
{
perror("sqlite3_prepare_v2 failed");
sqlite3_close(pDB);
return -1;
}
#include
SQLITE_API int sqlite3_finalize(sqlite3_stmt *pStmt);
#include
SQLITE_API int sqlite3_step(sqlite3_stmt* pStmt);
//执行准备好的 sql 语句
ret = sqlite3_step(stmt);
if(ret == SQLITE_DONE)
{
printf("sqlite3_step success\n");
}else
{
printf("sqlite3_step failed,%d\n",ret);
}
#include
#include
#include
#include
int main(int argc, char const *argv[])
{
sqlite3 * pDB = NULL; //用来表示表示你打开的数据库
//打开数据库
int ret = sqlite3_open("1.db",&pDB);//打开或者创建一个数据库,返回一个数据库的连接对象
if(ret != SQLITE_OK)
{
printf("open sqlite3 database error\n");
return 0;
}
//准备一条 sql 语句对象,表的列有 ID,NAME,TEL
int num; //存放 ID
char name[20] = {0}; //存放 name
char Tel[20] = {0}; //存放电话号码
char sql[256] = {0}; //存放 sql 语句
while(1)
{
//输入插入表中的数据
memset(name,0,20);
memset(Tel,0,20);
scanf("%d%s%s",&num,name,Tel);
if(num == 0) //输入 0 结束
{
break;
}
memset(sql,0,20);
sprintf(sql,"INSERT INTO JIUYUE VALUES(%d,'%s','%s');",num,name,Tel);
sqlite3_stmt *stmt = NULL;//指针,指向一条语句对象
ret = sqlite3_prepare_v2(pDB,sql,-1,&stmt,NULL); //准备一个语句对象
if(ret != SQLITE_OK)
{
perror("sqlite3_prepare_v2 failed");
sqlite3_close(pDB);
return -1;
}
//执行准备好的 sql 语句
ret = sqlite3_step(stmt);
if(ret == SQLITE_DONE)
{
printf("sqlite3_step success\n");
}else
{
printf("sqlite3_step failed,%d\n",ret);
}
//释放 sql 语句资源,销毁 sql 语句对象
sqlite3_finalize(stmt);
}
//关闭数据库
sqlite3_close(pDB); //关闭一个 sqlite3 数据库
return 0;
}
添加数据前表中内容:
执行函数后:
#include
SQLITE_API int sqlite3_exec(
sqlite3* ppDb, /* 数据库句柄 */
const char *sql, /* SQL 语句 */
int (*callback)(void*,int,char**,char**), /* 回调函数 */
void *arg1, /* 回调的第一个参数 */
char **errmsg /* 保存错误信息*/
);
typedef int(*sqlite_callback)(void* para, int columenCount, char** columnValue, char**columnName);
#include
#include
int my_callback(void* arg,int ncols,char*col_values[],char*col_names[])
{
//打印表头
int i;
if(*((int *)arg) == 1)
{
for(i = 0;i
#include
SQLITE_API int sqlite3_column_count(sqlite3_stmt *pStmt);
#include
SQLITE_API const char *sqlite3_column_name(sqlite3_stmt *pStmt, int N);
//获取结果集的列数
int nCols = sqlite3_column_count(stmt);
int i = 0;
if(flag == 1)
{
for(i = 0;i
#include
SQLITE_API int sqlite3_column_type(sqlite3_stmt *pStmt, int iCol);
#include
SQLITE_API const void *sqlite3_column_blob(sqlite3_stmt*, int iCol);
SQLITE_API double sqlite3_column_double(sqlite3_stmt*, int iCol);
SQLITE_API int sqlite3_column_int(sqlite3_stmt*, int iCol);SQLITE_API sqlite3_int64 sqlite3_column_int64(sqlite3_stmt*, int iCol);
SQLITE_API const unsigned char *sqlite3_column_text(sqlite3_stmt*, int iCol);
SQLITE_API const void *sqlite3_column_text16(sqlite3_stmt*, int iCol);
SQLITE_API sqlite3_value *sqlite3_column_value(sqlite3_stmt*, int iCol);
SQLITE_API int sqlite3_column_bytes(sqlite3_stmt*, int iCol);
SQLITE_API int sqlite3_column_bytes16(sqlite3_stmt*, int iCol);
for(i = 0;i
#include
#include
int main(int argc, char const *argv[])
{
sqlite3 * pDB = NULL;
//打开数据库
int ret = sqlite3_open("1.db",&pDB);//打开或者创建一个数据库,返回一个数据库的连接对象
if(ret != SQLITE_OK)
{
printf("open sqlite3 database error\n");
return 0;
}
//准备一条 sql 语句对象
sqlite3_stmt *stmt = NULL;//指针,指向一条语句对象
const char *sql = "SELECT * FROM JIUYUE;";
ret = sqlite3_prepare_v2(
pDB, /* 数据库的连接句柄,打开的数据库对象 */
sql, /* 要执行的原始的 SQL 语句 */
-1, /*zSql 指向的 SQL 语句的长度 */
&stmt, /* OUT:准备之后的 SQL 语句对象,把准备好的语句使用 ppstmt 指向它 */
NULL /*指针,指向元素 SQL 语句中未使用的部分,一般给 NULL */
);
if(ret != SQLITE_OK)
{
perror("sqlite3_prepare_v2 failed");
sqlite3_close(pDB);
return -1;
}
int r;
int flag = 1; //表头打印标志,为 1 打印,为 0 不打印
do
{
//3.执行 sql 语句,select 有多少条结果,就可以执行多少次语句
r = sqlite3_step(stmt);
if(r == SQLITE_DONE)
{
printf("sqlite3_step success\n");
break;
}
//打印 select 语句产生的结果集
//获取结果集的列数
int nCols = sqlite3_column_count(stmt);
int i = 0;
if(flag == 1)
{
for(i = 0;i
#include
SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt * pStmt, const char *zName);
char *sql = "INSERT INTO STU(ID,NAME,TEL)VALUES(@ID,@NAME,@TEL);";
sqlite3_stmt *stmt = NULL;//指针,指向一条语句对象
ret = sqlite3_prepare_v2(
pDB, /* 数据库的连接句柄,打开的数据库对象 */
sql, /* 要执行的原始的 SQL 语句 */
-1, /*zSql 指向的 SQL 语句的长度 */
&stmt, /* OUT:准备之后的 SQL 语句对象,把准备好的语句使用 ppstmt 指向它 */
NULL /*指针,指向元素 SQL 语句中未使用的部分,一般给 NULL */
);
//1.获取 sql 语句中占位符的索引值
int var_index[3] = {0};//保存@ID,@NAME,@TEL 在语句对象中的索引值
var_index[0] = sqlite3_bind_parameter_index(stmt, "@ID");
var_index[1] = sqlite3_bind_parameter_index(stmt, "@NAME");
var_index[2] = sqlite3_bind_parameter_index(stmt, "@TEL");
#include
//常用类型
SQLITE_API int sqlite3_bind_int(sqlite3_stmt*, int, int);
SQLITE_API int sqlite3_bind_text(sqlite3_stmt*,int,const char*,int,void(*)(void*));
SQLITE_API int sqlite3_bind_double(sqlite3_stmt*, int, double);
//其他类型
SQLITE_API int sqlite3_bind_blob(sqlite3_stmt*, int, const void*, int n, void(*)(void*));
SQLITE_API int sqlite3_bind_blob64(sqlite3_stmt*, int, const void*, sqlite3_uint64,void(*)(void*));
SQLITE_API int sqlite3_bind_int64(sqlite3_stmt*, int, sqlite3_int64);
SQLITE_API int sqlite3_bind_null(sqlite3_stmt*, int);
SQLITE_API int sqlite3_bind_text16(sqlite3_stmt*, int, const void*, int, void(*)(void*));
SQLITE_API int sqlite3_bind_text64(sqlite3_stmt*, int, const char*, sqlite3_uint64,void(*)(void*), unsigned char encoding);
SQLITE_API int sqlite3_bind_value(sqlite3_stmt*, int, const sqlite3_value*);
SQLITE_API int sqlite3_bind_pointer(sqlite3_stmt*, int, void*, constchar*,void(*)(void*));
SQLITE_API int sqlite3_bind_zeroblob(sqlite3_stmt*, int, int n);
SQLITE_API int sqlite3_bind_zeroblob64(sqlite3_stmt*, int, sqlite3_uint64);
var_index[0] = sqlite3_bind_parameter_index(stmt, "@ID");
var_index[1] = sqlite3_bind_parameter_index(stmt, "@NAME");
var_index[2] = sqlite3_bind_parameter_index(stmt, "@TEL");
//2.给索引值绑定自己的值
sqlite3_bind_int(stmt,var_index[0],num);
sqlite3_bind_text(stmt,var_index[1],name,strlen(name),NULL);
sqlite3_bind_text(stmt,var_index[2],tel,strlen(tel),NULL);
#include
SQLITE_API int sqlite3_reset(sqlite3_stmt *pStmt);
#include
#include
int main(int argc, char const *argv[])
{
sqlite3 * pDB = NULL;
//打开数据库
int ret = sqlite3_open("1.db",&pDB);//打开或者创建一个数据库,返回一个数据库的连接对象
if(ret != SQLITE_OK)
{
printf("open sqlite3 database error\n");
return 0;
}
//准备一条 sql 语句对象
sqlite3_stmt *stmt = NULL;//指针,指向一条语句对象
const char *sql = "INSERT INTO JIUYUE(ID,NAME,TEL)VALUES(@ID,@NAME,@TEL);";
ret = sqlite3_prepare_v2(
pDB, /* 数据库的连接句柄,打开的数据库对象 */
sql, /* 要执行的原始的 SQL 语句 */
-1, /*zSql 指向的 SQL 语句的长度 */
&stmt, /* OUT:准备之后的 SQL 语句对象,把准备好的语句使用 ppstmt 指向它 */
NULL /*指针,指向元素 SQL 语句中未使用的部分,一般给 NULL */
);
if(ret != SQLITE_OK)
{
perror("sqlite3_prepare_v2 failed");
sqlite3_close(pDB);
return -1;
}
//打开文件
FILE * fp = fopen("table.txt","r");
if(fp == NULL) //打开失败
{
perror("fopen error");
sqlite3_finalize(stmt); //打开失败,释放语句对象
sqlite3_close(pDB); //关闭数据库
return -1;
}
//获取 sql 语句中占位符的索引值
int var_index[3] = {0};//保存@ID,@NAME,@TEL 在语句对象中的索引值
var_index[0] = sqlite3_bind_parameter_index(stmt, "@ID");
var_index[1] = sqlite3_bind_parameter_index(stmt, "@NAME");
var_index[2] = sqlite3_bind_parameter_index(stmt, "@TEL");
while (1)
{
int num = 0; //保存 ID
char name[20] = {0}; //保存名字
char tel[20] = {0}; //保存电话
int r = fscanf(fp,"%d%s%s",&num,name,tel); //从文件中获取数据
if(r!=3)
{
if(feof(fp)) //如果文件读到末尾
{
fclose(fp); //关闭文件
break;
}
continue;
}
//给索引值绑定自己的值
sqlite3_bind_int(stmt,var_index[0],num);
sqlite3_bind_text(stmt,var_index[1],name,strlen(name),NULL);
sqlite3_bind_text(stmt,var_index[2],tel,strlen(tel),NULL);
r = sqlite3_step(stmt);
if(r == SQLITE_DONE)
{
printf("sqlite3_step success\n");
}else
{
printf("sqlite3_step failed,%d\n",ret);
}
//复位 sql 语句对象,方便下一轮的绑定
sqlite3_reset(stmt);
}
//释放 sql 语句资源,销毁 sql 语句对象
sqlite3_finalize(stmt);
//关闭数据库
sqlite3_close(pDB); //关闭一个 sqlite3 数据库
return 0;
}