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

相关文章

Nginx使用Keepalived部署web集群(高可用高性能负载均衡)实战案例

《Nginx使用Keepalived部署web集群(高可用高性能负载均衡)实战案例》本文介绍Nginx+Keepalived实现Web集群高可用负载均衡的部署与测试,涵盖架构设计、环境配置、健康检查、... 目录前言一、架构设计二、环境准备三、案例部署配置 前端 Keepalived配置 前端 Nginx

Python logging模块使用示例详解

《Pythonlogging模块使用示例详解》Python的logging模块是一个灵活且强大的日志记录工具,广泛应用于应用程序的调试、运行监控和问题排查,下面给大家介绍Pythonlogging模... 目录一、为什么使用 logging 模块?二、核心组件三、日志级别四、基本使用步骤五、快速配置(bas

使用animation.css库快速实现CSS3旋转动画效果

《使用animation.css库快速实现CSS3旋转动画效果》随着Web技术的不断发展,动画效果已经成为了网页设计中不可或缺的一部分,本文将深入探讨animation.css的工作原理,如何使用以及... 目录1. css3动画技术简介2. animation.css库介绍2.1 animation.cs

使用雪花算法产生id导致前端精度缺失问题解决方案

《使用雪花算法产生id导致前端精度缺失问题解决方案》雪花算法由Twitter提出,设计目的是生成唯一的、递增的ID,下面:本文主要介绍使用雪花算法产生id导致前端精度缺失问题的解决方案,文中通过代... 目录一、问题根源二、解决方案1. 全局配置Jackson序列化规则2. 实体类必须使用Long封装类3.

Python文件操作与IO流的使用方式

《Python文件操作与IO流的使用方式》:本文主要介绍Python文件操作与IO流的使用方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、python文件操作基础1. 打开文件2. 关闭文件二、文件读写操作1.www.chinasem.cn 读取文件2. 写

PyQt6中QMainWindow组件的使用详解

《PyQt6中QMainWindow组件的使用详解》QMainWindow是PyQt6中用于构建桌面应用程序的基础组件,本文主要介绍了PyQt6中QMainWindow组件的使用,具有一定的参考价值,... 目录1. QMainWindow 组php件概述2. 使用 QMainWindow3. QMainW

使用Python自动化生成PPT并结合LLM生成内容的代码解析

《使用Python自动化生成PPT并结合LLM生成内容的代码解析》PowerPoint是常用的文档工具,但手动设计和排版耗时耗力,本文将展示如何通过Python自动化提取PPT样式并生成新PPT,同时... 目录核心代码解析1. 提取 PPT 样式到 jsON关键步骤:代码片段:2. 应用 JSON 样式到

java变量内存中存储的使用方式

《java变量内存中存储的使用方式》:本文主要介绍java变量内存中存储的使用方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录1、介绍2、变量的定义3、 变量的类型4、 变量的作用域5、 内存中的存储方式总结1、介绍在 Java 中,变量是用于存储程序中数据

关于Mybatis和JDBC的使用及区别

《关于Mybatis和JDBC的使用及区别》:本文主要介绍关于Mybatis和JDBC的使用及区别,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录1、JDBC1.1、流程1.2、优缺点2、MyBATis2.1、执行流程2.2、使用2.3、实现方式1、XML配置文件

macOS Sequoia 15.5 发布: 改进邮件和屏幕使用时间功能

《macOSSequoia15.5发布:改进邮件和屏幕使用时间功能》经过常规Beta测试后,新的macOSSequoia15.5现已公开发布,但重要的新功能将被保留到WWDC和... MACOS Sequoia 15.5 正式发布!本次更新为 Mac 用户带来了一系列功能强化、错误修复和安全性提升,进一步增