
SQLite
文章平均质量分 75
freeangeles
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
SQLite基本操作
#include "..\sqlite3\include\sqlite3.h" #include #include //回调查询 int SelectTableCallBack( void* Param, int Column, char** ColumnValue, char** ColumnName ) { *static_cast( Param ) = true; for( int原创 2014-08-25 16:29:29 · 1124 阅读 · 0 评论 -
WIN7+VS2010下配置编译SQLite_3.8.6
1.官方最新版下载地址:http://www.sqlite.org/download.html 2.原创 2014-08-27 15:53:52 · 1719 阅读 · 0 评论 -
C++Windows下SQLite简单封装
SQLiteCommand.h: #pragma once #include #include #include #include "sqlite3.h" class SQLiteCommand { public: SQLiteCommand(); ~SQLiteCommand(); bool Connect(原创 2015-12-10 23:58:01 · 1634 阅读 · 0 评论