前端之家收集整理的这篇文章主要介绍了
Cocos2dx-sqlite3,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
本文出自 “老G的小屋” 博客,请务必保留此出处http://goldlion.blog.51cto.com/4127613/772518
一、安装与配置
sqlite是使用非常广泛的嵌入式 数据库,它有着0配置,占用资源少等特点。从大型游戏《魔兽世界》到android上的很多游戏和软件(google提供了一个java语言的绑定。)
在cocos2d-x中,我们使用它的C语言绑定。
为了方便和简化篇幅,我们直接使用它的源 代码。下载地址:
http://www. sqlite.org/ sqlite-amalgamation-3071000.zip
将其解压到cocos2d-x引擎目录下,得到一个“ sqlite-amalgamation-3071000” 文件夹,里面有四个源 文件。
在VC中新建一个项目,起名叫Save。
然后,右键点项目-》 属性-》配置 属性-》C++-》常规-》附加包含目录
二、初步使用
|
sqlite3 *pDB = NULL; |
18
result = sqlite3_exec( pDB,sqlstr.c_str(),monospace!important; font-weight:normal!important; font-style:normal!important; font-size:10pt!important; min-height:auto!important; display:block!important; background:none!important">19 |
(result != sqlITE_OK ) |
20
"插入记录失败,错误码:%d ,错误原因:%s\n"21 |
22 |
23 |
" insert into MyTable_1( name ) values ( '葫芦娃' ) "24 |
25 |
26 |
27 |
28 |
29 |
" insert into MyTable_1( name ) values ( '擎天柱' ) "30 |
31 |
32 |
33 |
34 |
//关闭数据库 |