Answer

专注于Mobile,WinCE
  首页  :: 新随笔  :: 联系 :: 管理

2011年2月24日

摘要: /*程序功能: 使用SQLite的C API操作SQLite数据库,存取二进制数据. 用来测试的文件都小于65535字节,没有测试更大的文件!参考文档: http://www.cntxk.com/CataNews/56/info8106.html编译环境: codeblock 10.05(svn 6906)*/#include <stdio.h>#include <memory.h>#include <sqlite3.h>int main(int argc,char *argv[]){ sqlite3* pDB=NULL; char* pErrMsg; if 阅读全文

posted @ 2011-02-24 11:37 answer 阅读(2378) 评论(0) 推荐(0) 编辑