C++ 操作sqlite3資料庫
C++ 操作sqlite3資料庫
參考:
http://www.cnblogs.com/BoyXiao/archive/2012/03/31/2426495.html
http://blog.csdn.net/harry_lyc/article/details/6663176
http://www.sqlite.org/download.html
http://www.th7.cn/Program/cp/201209/91677.shtml
參考:
http://www.cnblogs.com/BoyXiao/archive/2012/03/31/2426495.html
http://blog.csdn.net/harry_lyc/article/details/6663176
http://www.sqlite.org/download.html
http://www.th7.cn/Program/cp/201209/91677.shtml
#include "stdafx.h"
#include "sqlite3.h"
#include <iostream>
#include <sstream>
using namespace std;
sqlite3 * pDB;
int createTable()
{
char* errMsg;
std::string dropTab = "drop table test_tab;";
string strSQL= "create table test_tab (f1 int, f2 long);";
int res= sqlite3_exec(pDB , dropTab.c_str() , 0 , 0 , &errMsg);
if (res != SQLITE_OK)
{
std::cout << "執行SQL 出錯." << errMsg << std::endl;
return -1;
}
res = sqlite3_exec(pDB , strSQL.c_str() ,0 ,0, &errMsg);
if (res != SQLITE_OK)
{
std::cout << "執行建立table的SQL 出錯." << errMsg << std::endl;
return -1;
}
else
{
std::cout << "建立table的SQL成功執行."<< std::endl;
}
return 0;
}
int insert1()
{
char* errMsg;
int res = sqlite3_exec(pDB,"begin transaction;",0,0, &errMsg);
for (int i= 1; i < 10; ++i)
{
std::stringstream strsql;
strsql << "insert into test_tab values(";
strsql << i << ","<< (i+10) << ");";
std::string str = strsql.str();
res = sqlite3_exec(pDB,str.c_str(),0,0, &errMsg);
if (res != SQLITE_OK)
{
std::cout << "執行插入SQL 出錯." << errMsg << std::endl;
return -1;
}
}
res = sqlite3_exec(pDB,"commit transaction;",0,0, &errMsg);
std::cout << "插入SQL成功執行."<< std::endl;
return 0;
}
static int callback(void *NotUsed, int argc, char **argv, char **azColName)
{
for(int i = 0 ; i < argc ; i++)
{
std::cout << azColName[i] << " = " << (argv[i] ? argv[i] : "NULL") << ", " ;
}
std::cout<< "\n";
return 0;
}
int select1()
{
char* errMsg;
string strSQL= "select * from test_tab;";
int res = sqlite3_exec(pDB, strSQL.c_str(), callback , 0 , &errMsg);
if (res != SQLITE_OK)
{
std::cout << "執行查詢SQL 出錯." << errMsg << std::endl;
return -1;
}
else
{
std::cout << "SQL查詢成功執行."<< std::endl;
}
return 0;
}
int main()
{
int res = sqlite3_open("D:\\sql.db", &pDB);
if( res ){
std::cout << "Can't open database: "<< sqlite3_errmsg(pDB);
sqlite3_close(pDB);
return -1;
}
res = createTable();
if (res != 0)
{
return 0;
}
res = insert1();
if (res != 0)
{
return 0;
}
select1();
return 0;
}
相關文章
- sqlite3資料庫操作SQLite資料庫
- 使用sqlite3 模組操作sqlite3資料庫SQLite資料庫
- python sqlite3 資料庫操作PythonSQLite資料庫
- python用sqlite3模組操作sqlite資料庫PythonSQLite資料庫
- Python資料庫模組(sqlite3,SQLite3)Python資料庫SQLite
- Python3資料庫模組(sqlite3,SQLite3)Python資料庫SQLite
- Python標準庫14 資料庫 (sqlite3)Python資料庫SQLite
- SQLite3資料庫檔案結構解析SQLite資料庫
- Python 快速教程(標準庫14):資料庫 (sqlite3)Python資料庫SQLite
- cocos2dx之引入Sqlite3資料庫SQLite資料庫
- 常用操作 / 資料庫操作資料庫
- 資料庫操作資料庫
- 資料庫操作·資料庫
- [Python]_[初級]_[校驗查詢sqlite3資料庫]PythonSQLite資料庫
- 【Falsk 使用資料庫】---- 資料庫基本操作資料庫
- lazarus 開啟 sqlite3資料SQLite
- MongoDB 資料庫操作MongoDB資料庫
- mongodb資料庫操作MongoDB資料庫
- MySQL 資料庫操作MySql資料庫
- laravel 資料庫操作Laravel資料庫
- django資料庫操作Django資料庫
- Ecos 資料庫操作資料庫
- 資料庫基本操作資料庫
- gorm操作sqlite3,高併發讀寫如何避免鎖庫?GoORMSQLite
- 值得白嫖的資料庫常用操作語句彙總(資料庫、資料表、資料操作)資料庫
- 資料庫——基礎(資料庫操作,表格操作)——增加高階查詢資料庫
- Mysql資料庫操作命令MySql資料庫
- Laravel 資料庫基本操作Laravel資料庫
- django操作多資料庫Django資料庫
- Go之資料庫操作Go資料庫
- PHP操作MySQL資料庫PHPMySql資料庫
- postgresql 資料庫基本操作SQL資料庫
- MySQL資料庫常用操作MySql資料庫
- 【Java】操作Sqlite資料庫JavaSQLite資料庫
- 【Java】操作mysql資料庫JavaMySql資料庫
- 資料庫操作語句資料庫
- 資料庫操作指令(一)資料庫
- MySQL資料庫基本操作MySql資料庫