SQLite3 for WinCE or Mobile (EVC篇) (转载)

SQLite3 for WinCE or Mobile (EVC篇) (转载),第1张

概述  在WinCE,Mobile上,对SQLite的开发,目前还是以.net compact framework的封装居多. 在 http://www.sqlite.org/cvstrac/wiki?p=SqliteWrappers 可找到各种语言对 SQLite 的封装. 下面将介绍如何在EVC下使用SQLite. 1> 开发工具: EVC4.0 + SP2 2> 编译出所需的 SQLite DL

在WinCE,Mobile上,对sqlite的开发,目前还是以.net compact framework的封装居多.

http://www.sqlite.org/cvstrac/wiki?p=SqliteWrappers 可找到各种语言对 sqlite 的封装.

下面将介绍如何在EVC下使用sqlite.

1> 开发工具: EVC4.0 + SP2

2> 编译出所需的 sqlite DLL.

a> 在 http://sqlite-wince.sourceforge.net/ 中下载 sqlite for windows CE 的DLL 源代码.

b). 打开eVC新建一个“WCE Dynamic-link library”工程,命名为:sqlite3

c). 在接下来的对话框中选择"An empty windows CE DLL project",点击 FINISH,之后再点击 OK

d). 将源码中所有的 *.c *.h *.def 复制到工程文件夹下

e). 在 Source files 中添加除shell.c和tclsqlite.c这两个文件以外所有 *.c 的sqlite源文件文件

f). 在 header files 中添加所有 *.h 的sqlite源文件文件

g). 将 sqlite 源文件中的 sqlite3.def 文件添加到在工程的Source file中

h). 在eVC中选好你要编译的平台,例如“Win32(WCE ARMV4I) Release”

i). 好了,开始编译,Build(F7)一下

3> 编译出DLL后,需要使用C++对DLL中的功能进行封装.有如下资源可参考:

a> http://www.codeproject.com/KB/database/CppSQLite.aspx

b> http://www.adp-gmbh.ch/sqlite/wrapper.html

如上 a,b 资源,尽管已对 sqlite Dll 中的功能进行封装,然而 WinCE,Mobile上使用的是UNICODE编码,而 a,b 却并未支持UNICODE.所以真正要用到的是 a 资源中的 unicode 版本,如下:

http://softvoile.com/development/CppSQLite3U/


4> 有了 sqlite DLL 及 Cppsqlite3U 后,便可以很方便地使用 sqlITE :(步骤3中,a链接页画下就有DEMO)

主要代码如下:

#define file_DB_name TEXT("unitech.db")

// 获取程序当前路径
voID GetCurrentDirectory(CString & szPath)
{
wchar_t pBuf[
256 ];
Getmodulefilename(NulL,pBuf,
sizeof (pBuf) / sizeof (wchar_t));
szPath
= pBuf;
szPath
= szPath.left(szPath.ReverseFind( ' // ' ) + 1 );
}

voID CDemo2Dlg::Onbutton1()
{
CString strDbPath;
GetCurrentDirectory(strDbPath);
strDbPath
+= file_DB_name;

Cppsqlite3DB db;
try
{
// 打开或新建一个数据库
db.open(strDbPath);

// 判断表名是否存在
if (db.tableExists(L " tblTest " ))
{
AfxMessageBox(L
" table: tblTest is existed! " );
}
else // 不存在
{
AfxMessageBox(L
" table: tblTest not existed! " );
// 新建表
db.execDML(L " create table tblTest(empno varchar(20),empname varchar(20)) " );
}

// 插入一笔记录
db.execDML(L " insert into tblTest values('编号','姓名') " );
// 插入一笔记录
db.execDML(L " insert into tblTest values('精瑞电脑','Answer') " );

// 删除一笔记录
db.execDML(L " delete from tblTest where empno='编号' " );

// 插入10笔记录(使用事务)
TCHAR buf[ 256 ];
db.execDML(L
" begin transaction; " );
for ( int i = 0 ; i < 10 ; i ++ )
{
memset(buf,
0 , sizeof (buf));
wsprintf(buf,L
" insert into tblTest values ('no%d','name%d'); " ,i,i);
db.execDML(buf);
}
db.execDML(L
" commit transaction; " );

// 更新一笔记录
db.execDML(L " update tblTest set empname='answer' where empno='no1' " );

// 获取总笔数
int count = db.execScalar(L " select count(*) from tblTest; " );
TCHAR szCount[
50 ];
memset(szCount,
sizeof (szCount));
wsprintf(szCount,L
" Count:%d " ,count);
AfxMessageBox(szCount);

// 获取每一笔
Cppsqlite3query q = db.execquery(L " select * from tblTest " );
while ( ! q.eof())
{
AfxMessageBox(q.fIEldValue(
0 ));
q.nextRow();
}
q.finalize();

db.close();
AfxMessageBox(L
" OK " );
}
catch (Cppsqlite3Exception ex)
{
AfxMessageBox(ex.errorMessage());
}
}

5> 成功完成,Enjoy it~~~

6> 下载:

a> SQLite3 For WinCE Source

b> CppSQLite3U For WinCE Source

c> Demo Source

d> Demo Exe

7> 推荐一个sqlite的可视化工具:

sqliteSpy: http://www.yunqa.de/delphi/doku.php/products/sqlitespy/index

下载

总结

以上是内存溢出为你收集整理的SQLite3 for WinCE or Mobile (EVC篇) (转载)全部内容,希望文章能够帮你解决SQLite3 for WinCE or Mobile (EVC篇) (转载)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1178059.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存