Android中SQLiteDatabase的使用

2024-03-05 16:38

本文主要是介绍Android中SQLiteDatabase的使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

链接http://aina-hk55hk.iteye.com/blog/698794
package com.Aina.Android;

import android.app.Activity;
import android.app.AlertDialog;
import android.content.ContentValues;
import android.content.DialogInterface;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.widget.ListAdapter;
import android.widget.ListView;
import android.widget.SimpleCursorAdapter;

public class Test extends Activity {
/** Called when the activity is first created. */
private ListView lv = null;
private SQLiteDatabase mSQLiteDatabase = null;
private static final String DATABASE_NAME = "Test.db";
private static final String TABLE_NAME = "table_test";
private static final String COLUMN_ID = "_id";// INTEGER PRIMARY KEY
private static final String COLUMN_NAME = "name";// TEXT
private static final String COLUMN_AGE = "age";// INTEGER
private static final String CREATE_TABLE = "CREATE TABLE IF NOT EXISTS "
+ TABLE_NAME + " (" + COLUMN_ID + " INTEGER PRIMARY KEY,"
+ COLUMN_NAME + " TEXT," + COLUMN_AGE + " INTEGER)";

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
lv = (ListView) this.findViewById(R.id.ListView01);
try {
mSQLiteDatabase = this.openOrCreateDatabase(DATABASE_NAME,
Activity.MODE_PRIVATE, null);
} catch (Exception ex) {
this.ShowDialog("打开或者创建数据库异常:" + ex.getMessage());
}
try {
mSQLiteDatabase.execSQL(CREATE_TABLE);
} catch (Exception ex) {
this.ShowDialog("创建表异常:" + ex.getMessage());
}
// this.InsertData();
// this.InsertData2();
// this.AddData();
// this.UpdateData();
// this.UpdateData2();
// this.UpdateData3();
// this.DeleteData();
// this.DeleteData2();
// this.DeleteData3();
this.SelectData();
}

@Override
protected void onPause() {
super.onPause();
mSQLiteDatabase.close();// 关闭数据库
}

/**
* 插入数据-execSQL
*/
private void InsertData() {
try {
String str = "INSERT INTO " + TABLE_NAME + " (" + COLUMN_NAME + ","
+ COLUMN_AGE + ")VALUES('张三',30)";
mSQLiteDatabase.execSQL(str);
} catch (Exception ex) {
this.ShowDialog("插入数据异常:" + ex.getMessage());
}

}

/**
* 插入数据-execSQL
*/
private void InsertData2() {
try {
String str = "INSERT INTO " + TABLE_NAME + " (" + COLUMN_NAME + ","
+ COLUMN_AGE + ")VALUES(?,?)";
Object[] ob = new Object[] { "王五", 50 };
mSQLiteDatabase.execSQL(str, ob);
} catch (Exception ex) {
this.ShowDialog("插入数据异常:" + ex.getMessage());
}
}

/**
* 插入数据-insert() nullColumnHack,这个参数需要传入一个列名。SQL标准并不允许插入所有列均为空的一行数据,
* 所以当传入的initialValues值为空或者为0时
* ,用nullColumnHack参数指定的列会被插入值为NULL的数据,然后再将此行插入到表中。
*/
private void AddData() {
try {
ContentValues cv = new ContentValues();
cv.put(COLUMN_NAME, "李四");
cv.put(COLUMN_AGE, 40);
// long num = mSQLiteDatabase.insert(TABLE_NAME, COLUMN_NAME, cv);
long num = mSQLiteDatabase.insertOrThrow(TABLE_NAME, null, cv);
this.setTitle("num==" + num);
} catch (Exception ex) {
this.ShowDialog("插入数据异常:" + ex.getMessage());
}

}

/**
* 更新数据
*/
private void UpdateData() {
try {
String str = "UPDATE " + TABLE_NAME + " SET " + COLUMN_AGE
+ " = 25 WHERE _id=1";
mSQLiteDatabase.execSQL(str);
} catch (Exception ex) {
this.ShowDialog("更新数据异常:" + ex.getMessage());
}
}

/**
* 更新数据
*/
private void UpdateData2() {
try {
String str = "UPDATE " + TABLE_NAME + " SET " + COLUMN_AGE
+ " = ? WHERE _id=?";
Object[] Ob = new Object[] { 33, 2 };
mSQLiteDatabase.execSQL(str, Ob);
} catch (Exception ex) {
this.ShowDialog("更新数据异常:" + ex.getMessage());
}
}

/**
* 更新数据
*/
private void UpdateData3() {
try {
ContentValues cv = new ContentValues();
cv.put(COLUMN_NAME, "李四4");
cv.put(COLUMN_AGE, 43);
int num = mSQLiteDatabase.update(TABLE_NAME, cv,
COLUMN_NAME + "=?", new String[] { "李四" });
this.setTitle("修改行数num=" + num);
} catch (Exception ex) {
this.ShowDialog("更新数据异常:" + ex.getMessage());
}
}

/**
* 删除数据
*/
private void DeleteData() {
try {
String str = "DELETE FROM " + TABLE_NAME + " WHERE _id=3";
mSQLiteDatabase.execSQL(str);
} catch (Exception ex) {
this.ShowDialog("删除数据异常:" + ex.getMessage());
}
}

/**
* 删除数据
*/
private void DeleteData2() {
try {
String str = "DELETE FROM " + TABLE_NAME + " WHERE _id=?";
mSQLiteDatabase.execSQL(str, new Object[] { 2 });
} catch (Exception ex) {
this.ShowDialog("删除数据异常:" + ex.getMessage());
}
}

/**
* 删除数据
*/
private void DeleteData3() {
try {
int num = mSQLiteDatabase.delete(TABLE_NAME, "_id=1", null);
this.setTitle("删除行数num=" + num);
} catch (Exception ex) {
this.ShowDialog("删除数据异常:" + ex.getMessage());
}
}

/**
* 查询数据
*/
private void SelectData() {
try {
String sql = "SELECT * FROM " + TABLE_NAME;
Cursor cursor = mSQLiteDatabase.rawQuery(sql,null);
// Cursor cursor = mSQLiteDatabase.query(TABLE_NAME, new String[] {
// COLUMN_ID, COLUMN_NAME, COLUMN_AGE }, COLUMN_NAME + "=?",
// new String[] { "李四" }, null, null, null);
if (cursor != null) {
ListAdapter adapter = new SimpleCursorAdapter(this,
R.layout.ss, cursor, new String[] { COLUMN_ID,
COLUMN_NAME, COLUMN_AGE },
new int[] { R.id.TextView1, R.id.TextView2,
R.id.TextView3 });
lv.setAdapter(adapter);
}
} catch (Exception ex) {
this.ShowDialog("查询数据异常:" + ex.getMessage());
}
}
/**
* 删除表
*/
private void DropTable(){
try{
String sql = "DROP TABLE "+TABLE_NAME;
mSQLiteDatabase.execSQL(sql);
}catch(Exception ex){
this.ShowDialog("删除表异常:"+ex.getMessage());
}
}
/**
* 删除数据库
*/
private void DropDatabase(){
try{
this.deleteDatabase(DATABASE_NAME);
}catch(Exception ex){
this.ShowDialog("删除数据库异常:"+ex.getMessage());
}
}
/**
* 提示对话框
* @param msg
*/
private void ShowDialog(String msg) {
new AlertDialog.Builder(this).setTitle("提示").setMessage(msg)
.setPositiveButton("OK", new DialogInterface.OnClickListener() {

@Override
public void onClick(DialogInterface dialog, int which) {

}

}).show();
}
}
2.main.xml
Java代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="@string/hello" />
<ListView android:id="@+id/ListView01" android:layout_width="fill_parent"
android:layout_height="wrap_content"></ListView>
</LinearLayout>

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="@string/hello" />
<ListView android:id="@+id/ListView01" android:layout_width="fill_parent"
android:layout_height="wrap_content"></ListView>
</LinearLayout>


3.ss.xml
Java代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_width="fill_parent"
android:paddingTop="5dip" android:paddingBottom="5dip" android:paddingLeft="5dip"
android:layout_height="wrap_content">
<TextView android:id="@+id/TextView1" android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="" />
<TextView android:id="@+id/TextView2" android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20px" android:layout_marginLeft="50dip" android:paddingRight="50dip"
android:text="" />
<TextView android:id="@+id/TextView3" android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="" />

这篇关于Android中SQLiteDatabase的使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/777136

相关文章

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

Hadoop数据压缩使用介绍

一、压缩原则 (1)运算密集型的Job,少用压缩 (2)IO密集型的Job,多用压缩 二、压缩算法比较 三、压缩位置选择 四、压缩参数配置 1)为了支持多种压缩/解压缩算法,Hadoop引入了编码/解码器 2)要在Hadoop中启用压缩,可以配置如下参数

Makefile简明使用教程

文章目录 规则makefile文件的基本语法:加在命令前的特殊符号:.PHONY伪目标: Makefilev1 直观写法v2 加上中间过程v3 伪目标v4 变量 make 选项-f-n-C Make 是一种流行的构建工具,常用于将源代码转换成可执行文件或者其他形式的输出文件(如库文件、文档等)。Make 可以自动化地执行编译、链接等一系列操作。 规则 makefile文件

使用opencv优化图片(画面变清晰)

文章目录 需求影响照片清晰度的因素 实现降噪测试代码 锐化空间锐化Unsharp Masking频率域锐化对比测试 对比度增强常用算法对比测试 需求 对图像进行优化,使其看起来更清晰,同时保持尺寸不变,通常涉及到图像处理技术如锐化、降噪、对比度增强等 影响照片清晰度的因素 影响照片清晰度的因素有很多,主要可以从以下几个方面来分析 1. 拍摄设备 相机传感器:相机传

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

pdfmake生成pdf的使用

实际项目中有时会有根据填写的表单数据或者其他格式的数据,将数据自动填充到pdf文件中根据固定模板生成pdf文件的需求 文章目录 利用pdfmake生成pdf文件1.下载安装pdfmake第三方包2.封装生成pdf文件的共用配置3.生成pdf文件的文件模板内容4.调用方法生成pdf 利用pdfmake生成pdf文件 1.下载安装pdfmake第三方包 npm i pdfma

零基础学习Redis(10) -- zset类型命令使用

zset是有序集合,内部除了存储元素外,还会存储一个score,存储在zset中的元素会按照score的大小升序排列,不同元素的score可以重复,score相同的元素会按照元素的字典序排列。 1. zset常用命令 1.1 zadd  zadd key [NX | XX] [GT | LT]   [CH] [INCR] score member [score member ...]

Android平台播放RTSP流的几种方案探究(VLC VS ExoPlayer VS SmartPlayer)

技术背景 好多开发者需要遴选Android平台RTSP直播播放器的时候,不知道如何选的好,本文针对常用的方案,做个大概的说明: 1. 使用VLC for Android VLC Media Player(VLC多媒体播放器),最初命名为VideoLAN客户端,是VideoLAN品牌产品,是VideoLAN计划的多媒体播放器。它支持众多音频与视频解码器及文件格式,并支持DVD影音光盘,VCD影

git使用的说明总结

Git使用说明 下载安装(下载地址) macOS: Git - Downloading macOS Windows: Git - Downloading Windows Linux/Unix: Git (git-scm.com) 创建新仓库 本地创建新仓库:创建新文件夹,进入文件夹目录,执行指令 git init ,用以创建新的git 克隆仓库 执行指令用以创建一个本地仓库的