sqlite入门基础
源地址:http://www.cnblogs.com/likebeta/category/388368.html 打开数据库链接sqlite3_open用法 原型: int sqlite3_open( const char *filename,/* Database filename (UTF-8) */ sqlite3 **ppDb OUT: SQLite db handle */ ); 用这个函数开始数据库操作。需要传入两个参数,一是数据库文件名,比如:E:/test.db。文件名不需要一定存在,如果此文件不存在,sqlite会自动建立它。如果它存在,就尝试把它当数据库文件来打开。二是sqlite3**,即前面提到的关键数据结构。这个结构底层细节如何,你不要管它。 关闭数据库链接sqlite3_close用法 int sqlite3_close(sqlite3 *ppDb); ppDb为刚才使用sqlite3_open打开的数据库链接 执行sql操作sqlite3_exec用法 int sqlite3_exec(
sqlite3* ppDb,0); line-height:1.5!important"> An open database */
char *sql,0); line-height:1.5!important"> SQL to be evaluated int (*callback)(void*,255); line-height:1.5!important">int,255); line-height:1.5!important">char**,255); line-height:1.5!important">char**),0); line-height:1.5!important"> Callback function void *,0); line-height:1.5!important"> 1st argument to callback char **errmsg Error msg written here 这就是执行一条sql 语句的函数。 exec 的回调 typedef int(*sqlite3_callback)(void*,int,char**,char**); //para是你在sqlite3_exec 里传入的void*参数通过para参数,你可以传入一些特殊的指针(比如类指针、结构指针), 实例: #include <iostream> using namespace std; #include "sqlite/sqlite3.h" int callback(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))errmsg); if (nResult != SQLITE_OK) { sqlite3_close(db); cout<<errmsg; sqlite3_free(errmsg); 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(),&errmsg); if (nResult != SQLITE_OK) { sqlite3_close(db); cout<<errmsg<<endl; sqlite3_free(errmsg); 0; } strSql = select * from fuck"; nResult = sqlite3_exec(db,callback,&errmsg); 0; } sqlite3_close(db); 0; } int nCount,255); line-height:1.5!important">char** pValue,255); line-height:1.5!important">char** pName) { string s; for(0;i<nCount;i++) { s+=pName[i]; s+=:"; s+=pValue[i]; s+=n"; } cout<<s<<endl; 0; }
上一篇介绍的sqlite3_exec 是使用回调来执行对select结果的操作。还有一个方法可以直接查询而不需要回调。但是,我个人感觉还是回调好,因为代码可以更加整齐,只不过用回调很麻烦,你得声明一个函数,如果这个函数是类成员函数,你还不得不把它声明成static的(要问为什么?这又是C++基础了。C++成员函数实际上隐藏了一个参数:this,C++调用类的成员函数的时候,隐含把类指针当成函数的第一个参数传递进去。结果,这造成跟前面说的sqlite 回调函数的参数不相符。只有当把成员函数声明成static 时,它才没有多余的隐含的this参数)。 第1个参数不再多说,看前面的例子。 pazResult返回的字符串数量实际上是(*pnRow+1)*(*pnColumn),因为前(*pnColumn)个是字段名 修改上篇的例子,使用sqlite3_get_table,来去的结果集: nResult = sqlite3_exec(db,&errmsg); char** pResult; int nRow; int nCol; nResult = sqlite3_get_table(db,&pResult,&nRow,&nCol,128); line-height:1.5!important">0; } string strOut; int nIndex = nCol; 0;i<nRow;i++) { int j=0;j<nCol;j++) { strOut+=pResult[j]; strOut+="; strOut+=pResult[nIndex]; strOut+="; ++nIndex; } } sqlite3_free_table(pResult); cout<<strOut<<endl; sqlite3_close(db); 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; }*/修改自董淳光 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |