• 大小: 0.05M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-27
  • 标签: SQLite  数据库  Android  

资源简介

 

  每个应用程序都要使用数据,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.xml

     文件       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.xml

     文件        280  2010-06-11 23:39  testDb\res\layout\test.xml

     文件        289  2010-06-11 21:27  testDb\res\values\strings.xml

     文件       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个文件信息

评论

共有 条评论