Android徒手撸数据库系列——实现单表的增删改查

2024-05-29 19:58

本文主要是介绍Android徒手撸数据库系列——实现单表的增删改查,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

这是手撸数据库框架的第二篇

之前完成了一篇文章

Android徒手撸数据库系列——注解与反射数据库关系模型

下面继续上一篇没有完成的内容

目录

文章目录

  • 目录
    • 1. 数据的更新
    • 2. 数据的删除
    • 3. 数据的查询
    • 详细代码

1. 数据的更新

数据的更新其实就是比数据的插入多了条件的查询

我们使用SQLiteDatabase中这个方法进行更新数据库

   /*** Convenience method for updating rows in the database.** @param table the table to update in* @param values a map from column names to new column values. null is a*            valid value that will be translated to NULL.* @param whereClause the optional WHERE clause to apply when updating.*            Passing null will update all rows.* @param whereArgs You may include ?s in the where clause, which*            will be replaced by the values from whereArgs. The values*            will be bound as Strings.* @return the number of rows affected*/public int update(String table, ContentValues values, String whereClause, String[] whereArgs) {return updateWithOnConflict(table, values, whereClause, whereArgs, CONFLICT_NONE);}

我们可以看到多了参数whereClause和whereArgs

获取需要更新的字段与插入时相同

   Map<String, String> values = getValues(entity);ContentValues contentValues = getContentValues(values);

然后创建表示条件的对象

public class Condition {public String whereCause;//"name=? && password=?...."public String[] whereArgs;//new String[]{"ddssingsong"}// 构造查询语句public Condition(Map<String, String> whereCause) {ArrayList list = new ArrayList();StringBuilder stringBuilder = new StringBuilder();// 构造时忽略第一个and语句stringBuilder.append("1=1 ");Set keys = whereCause.keySet();Iterator iterator = keys.iterator();while (iterator.hasNext()) {String key = (String) iterator.next();String value = whereCause.get(key);if (value != null) {stringBuilder.append(" and " + key + "=?");list.add(value);}}this.whereCause = stringBuilder.toString();this.whereArgs = (String[]) list.toArray(new String[list.size()]);}
}

整个方法如下

 @Overridepublic int update(T entity, T where) {Map<String, String> values = getValues(entity);ContentValues contentValues = getContentValues(values);Map<String, String> whereCause = getValues(where);Condition condition = new Condition(whereCause);return mSqLiteDatabase.update(mTableName, contentValues, condition.whereCause, condition.whereArgs);}

2. 数据的删除

数据库删除和更新差不多

  @Overridepublic int delete(T where) {Map<String, String> map = getValues(where);Condition condition = new Condition(map);return mSqLiteDatabase.delete(mTableName, condition.whereCause, condition.whereArgs);}

3. 数据的查询

查询的话拿到Cursor后需要对返回结果进行处理

  private List<T> getResult(Cursor cursor, T where) {ArrayList<T> list = new ArrayList();T item;while (cursor.moveToNext()) {try {item = (T) where.getClass().newInstance();for (Map.Entry<String, Field> stringFieldEntry : cacheMap.entrySet()) {// 获取列名String columnName = (String) ((Map.Entry) stringFieldEntry).getKey();// 根据列名拿到游标的位置int columnIndex = cursor.getColumnIndex(columnName);Field field = (Field) ((Map.Entry) stringFieldEntry).getValue();Class type = field.getType();if (columnIndex != -1) {if (type == String.class) {//反射方式赋值field.set(item, cursor.getString(columnIndex));} else if (type == Double.class) {field.set(item, cursor.getDouble(columnIndex));} else if (type == Integer.class) {field.set(item, cursor.getInt(columnIndex));} else if (type == Long.class) {field.set(item, cursor.getLong(columnIndex));} else if (type == byte[].class) {field.set(item, cursor.getBlob(columnIndex));/*不支持的类型*/} else {continue;}}}list.add(item);} catch (InstantiationException e) {e.printStackTrace();} catch (IllegalAccessException e) {e.printStackTrace();}}return list;}

从之前缓存的字段信息中查询出对应的字段信息,然后使用反射对其赋值

下面是整个查询方法

   @Overridepublic List<T> query(T where, String orderBy, Integer startIndex, Integer limit) {Map map = getValues(where);String limitString = null;if (startIndex != null && limit != null) {limitString = startIndex + " , " + limit;}Condition condition = new Condition(map);Cursor cursor = mSqLiteDatabase.query(mTableName, null, condition.whereCause, condition.whereArgs, null, null, orderBy, limitString);List<T> result = getResult(cursor, where);cursor.close();return result;}

详细代码

https://github.com/ddssingsong/AnyTool

这篇关于Android徒手撸数据库系列——实现单表的增删改查的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

SpringBoot3实现Gzip压缩优化的技术指南

《SpringBoot3实现Gzip压缩优化的技术指南》随着Web应用的用户量和数据量增加,网络带宽和页面加载速度逐渐成为瓶颈,为了减少数据传输量,提高用户体验,我们可以使用Gzip压缩HTTP响应,... 目录1、简述2、配置2.1 添加依赖2.2 配置 Gzip 压缩3、服务端应用4、前端应用4.1 N

SpringBoot实现数据库读写分离的3种方法小结

《SpringBoot实现数据库读写分离的3种方法小结》为了提高系统的读写性能和可用性,读写分离是一种经典的数据库架构模式,在SpringBoot应用中,有多种方式可以实现数据库读写分离,本文将介绍三... 目录一、数据库读写分离概述二、方案一:基于AbstractRoutingDataSource实现动态

Python FastAPI+Celery+RabbitMQ实现分布式图片水印处理系统

《PythonFastAPI+Celery+RabbitMQ实现分布式图片水印处理系统》这篇文章主要为大家详细介绍了PythonFastAPI如何结合Celery以及RabbitMQ实现简单的分布式... 实现思路FastAPI 服务器Celery 任务队列RabbitMQ 作为消息代理定时任务处理完整

Java枚举类实现Key-Value映射的多种实现方式

《Java枚举类实现Key-Value映射的多种实现方式》在Java开发中,枚举(Enum)是一种特殊的类,本文将详细介绍Java枚举类实现key-value映射的多种方式,有需要的小伙伴可以根据需要... 目录前言一、基础实现方式1.1 为枚举添加属性和构造方法二、http://www.cppcns.co

使用Python实现快速搭建本地HTTP服务器

《使用Python实现快速搭建本地HTTP服务器》:本文主要介绍如何使用Python快速搭建本地HTTP服务器,轻松实现一键HTTP文件共享,同时结合二维码技术,让访问更简单,感兴趣的小伙伴可以了... 目录1. 概述2. 快速搭建 HTTP 文件共享服务2.1 核心思路2.2 代码实现2.3 代码解读3.

Android中Dialog的使用详解

《Android中Dialog的使用详解》Dialog(对话框)是Android中常用的UI组件,用于临时显示重要信息或获取用户输入,本文给大家介绍Android中Dialog的使用,感兴趣的朋友一起... 目录android中Dialog的使用详解1. 基本Dialog类型1.1 AlertDialog(

MySQL双主搭建+keepalived高可用的实现

《MySQL双主搭建+keepalived高可用的实现》本文主要介绍了MySQL双主搭建+keepalived高可用的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,... 目录一、测试环境准备二、主从搭建1.创建复制用户2.创建复制关系3.开启复制,确认复制是否成功4.同

Java实现文件图片的预览和下载功能

《Java实现文件图片的预览和下载功能》这篇文章主要为大家详细介绍了如何使用Java实现文件图片的预览和下载功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... Java实现文件(图片)的预览和下载 @ApiOperation("访问文件") @GetMapping("

使用Sentinel自定义返回和实现区分来源方式

《使用Sentinel自定义返回和实现区分来源方式》:本文主要介绍使用Sentinel自定义返回和实现区分来源方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Sentinel自定义返回和实现区分来源1. 自定义错误返回2. 实现区分来源总结Sentinel自定

C# WinForms存储过程操作数据库的实例讲解

《C#WinForms存储过程操作数据库的实例讲解》:本文主要介绍C#WinForms存储过程操作数据库的实例,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、存储过程基础二、C# 调用流程1. 数据库连接配置2. 执行存储过程(增删改)3. 查询数据三、事务处