main.cxx#include #include #include #include using
namespace std; int main() { sqlite3* file; int flag; flag =
sqlite3_open("./stu.db", &file); if(...
分类:
数据库 时间:
2014-06-29 14:36:03
阅读次数:
254
sing the emulators (adb shell sqlite3
--version):SQLite 3.7.11:19-4.4-KitKat18-4.3-Jelly Bean17-4.2-Jelly
Bean16-4.1-Jelly BeanSQLite 3.7.4:15-4.0.3-I...
分类:
移动开发 时间:
2014-05-27 16:06:58
阅读次数:
389
/***************************************************************
* Name: CaculatorMain.h * Purpose: Defines Application Frame * Author:
zhangaihua (62...
分类:
数据库 时间:
2014-05-27 00:37:45
阅读次数:
259
在android开发中,在使用命令行操作数据库sqlite时,有时候会遇到sqlite3
not found的问题。这是因为你的手机没有安装sqlite3程序。解决办法如下(两种办法结合起来解释的更清楚!!!):方法1:sqlite3 not
found的解决办法(转)在Android开发方面,我是...
分类:
移动开发 时间:
2014-05-26 16:07:29
阅读次数:
516
1.DDL数据定义语言(Data Definiton Language)用于create
和alter Schema。2.DML数据操作语言(Data manipulation
Language)用于操作和获取数据,insertion,update,deletion,,,,.sql书sql tuni...
分类:
数据库 时间:
2014-05-26 12:42:47
阅读次数:
268
首先要配置的是Android SDK中带有的adb工具:
解压并打开下载好的Android SDK,找到platform-tools文件夹,
右击我的电脑-->属性--->高级系统设置--->环境变量;
建议只在用户变量中设置;
如果有PATH环境变量就双击进行编辑,拷贝找到的platform-tools文件夹的全路径,例如:
D:\Program Files\adt-bundle-wi...
分类:
移动开发 时间:
2014-05-25 21:11:40
阅读次数:
373
2014年5月25日 12:26:14需要文件: svn apr apr-util
sqlite3 serfsvn :http://subversion.apache.org/download/apr/apr-util
:http://apr.apache.org/download.cgiserf ...
分类:
其他好文 时间:
2014-05-25 19:50:04
阅读次数:
252
一、定时器在cocos2d-x中,
类似定时器的操作,不需要额外的写Timer,实际上,在Node元素中,已经添加了定时执行的功能;先来看看在Node中的定义// ...bool
Node::isScheduled(SEL_SCHEDULE selector){ return _schedul...
分类:
其他好文 时间:
2014-05-25 19:42:54
阅读次数:
290
1.先在线安装sqlite3,试用一下命令安装
ubuntu@ubuntu-virtual-machine:~$ sudo apt-get install sqlite3
2.安装成功后测试会出现
ubuntu@ubuntu-virtual-machine:~$ sqlite3
SQLite version 3.7.9 2011-11-01 00:52:41
Enter ".help"...
分类:
数据库 时间:
2014-05-22 17:13:35
阅读次数:
348
11:33 2013/6/26 SQL语句: DML(Data Manipulation
Language 数据操作语言)语句:insert update delete selectDDL(Data Difinition Language
数据定义语言)语句:create table/ create...
分类:
数据库 时间:
2014-05-22 13:50:16
阅读次数:
442