资源简介
每个应用程序都要使用数据,Android应用程序也不例外,Android使用开源的、与操作系统无关的SQL数据库 --大名鼎鼎的SQLite。SQLite是一款轻量级数据库,它的设计目的是嵌入式,而且它占用的资源非常少,在嵌入式设备中,可能只需要几百KB,这也是 Android 系统采用 SQLite 数据库的原因之一吧。
简介
-
轻量级
使用 SQLite 只需要带一个动态库,就可以享受它的全部功能,而且那个动态库的尺寸想当小。
-
独立性
SQLite 数据库的核心引擎不需要依赖第三方软件,也不需要所谓的“安装”。
-
隔离性
SQLite 数据库中所有的信息(比如表、视图、触发器等)都包含在一个文件夹内,方便管理和维护。
-
跨平台
SQLite 目前支持大部分操作系统,不至电脑操作系统更在众多的手机系统也是能够运行,比如:Android。
-
多语言接口
SQLite 数据库支持多语言编程接口。
-
安全性
SQLite 数据库通过数据库级上的独占性和共享锁来实现独立事务处理。这意味着多个进程可以在同一时间从同一数据库读取数据,但只能有一个可以写入数据。
代码片段和文件信息
/* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package com.terry;
public final class R {
public static final class attr {
}
public static final class drawable {
public static final int icon=0x7f020000;
}
public static final class id {
public static final int AbsoluteLayout1=0x7f050000;
public static final int EditText1=0x7f050001;
public static final int ListView1=0x7f050002;
public static final int topTextView=0x7f050003;
}
public static final class layout {
public static final int main=0x7f030000;
public static final int test=0x7f030001;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 280 2010-06-11 20:43 testDb\.classpath
文件 842 2010-06-11 20:43 testDb\.project
文件 636 2010-06-11 20:43 testDb\AndroidManifest.xm
文件 8032 2010-06-12 14:27 testDb\bin\classes.dex
文件 3078 2010-06-12 14:27 testDb\bin\com\terry\dbHelper.class
文件 313 2010-06-12 00:08 testDb\bin\com\terry\R$attr.class
文件 373 2010-06-12 00:08 testDb\bin\com\terry\R$drawable.class
文件 467 2010-06-12 00:08 testDb\bin\com\terry\R$id.class
文件 395 2010-06-12 00:08 testDb\bin\com\terry\R$layout.class
文件 485 2010-06-12 00:08 testDb\bin\com\terry\R$string.class
文件 468 2010-06-12 00:08 testDb\bin\com\terry\R.class
文件 1612 2010-06-12 00:08 testDb\bin\com\terry\testDbActivity$1.class
文件 1798 2010-06-12 00:08 testDb\bin\com\terry\testDbActivity$2.class
文件 3819 2010-06-12 00:08 testDb\bin\com\terry\testDbActivity.class
文件 11545 2010-06-12 00:08 testDb\bin\resources.ap_
文件 17459 2010-06-12 14:27 testDb\bin\testDb.apk
文件 449 2010-06-11 20:43 testDb\default.properties
文件 1103 2010-06-12 00:08 testDb\gen\com\terry\R.java
文件 4147 2010-06-11 20:43 testDb\res\drawable-hdpi\icon.png
文件 1723 2010-06-11 20:43 testDb\res\drawable-ldpi\icon.png
文件 2574 2010-06-11 20:43 testDb\res\drawable-mdpi\icon.png
文件 626 2010-06-11 21:21 testDb\res\layout\main.xm
文件 280 2010-06-11 23:39 testDb\res\layout\test.xm
文件 289 2010-06-11 21:27 testDb\res\values\strings.xm
文件 2120 2010-06-12 14:27 testDb\src\com\terry\dbHelper.java
文件 3485 2010-06-11 23:40 testDb\src\com\terry\testDbActivity.java
目录 0 2010-06-12 00:08 testDb\bin\com\terry
目录 0 2010-06-12 00:08 testDb\gen\com\terry
目录 0 2010-06-12 00:08 testDb\src\com\terry
目录 0 2010-06-12 00:08 testDb\bin\com
............此处省略16个文件信息
相关资源
- 仿赶集生活android客户端的介绍启动界
- android不错的下拉刷新效果(支持各种
- android 应用启动的时弹出的悬浮带有关
- android 左右侧滑抽屉菜单
- android 点赞+1效果
- android画图
- android 手机上调用插件打开网页
- android viewpager 动态加载数据
- Android登陆弹出界面
- android 线性布局新手入门
- android 移动PathMenu 菜单
- 用于记录女生生理期,以便女生自我
- android 自定义radiogroup实现-listview+rad
- android 获取联系人信息
- android 自定义Switch控件 (兼容低版本
- android 模拟qq发送表情功能
- Android webView和js交互的Demo
- andriod滚轮选择生日
- android 友推分享
- android SDK 离线版chm文档(含大量)
- android listview实现复选框(checkboxlist)
- android EditText加减demo
- android 管理
- 书籍《精通android游戏开发》pdf
- android ExpandableTextView
- android Imageloader 显示网络图片 源码
- android 菜单键选择背景颜色
- android 仿html table布局可横向 纵向滚动
- android 图片高斯图片模糊算法
- android activity 切换效果
评论
共有 条评论