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

相关文章

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

MySQL数据库宕机,启动不起来,教你一招搞定!

作者介绍:老苏,10余年DBA工作运维经验,擅长Oracle、MySQL、PG、Mongodb数据库运维(如安装迁移,性能优化、故障应急处理等)公众号:老苏畅谈运维欢迎关注本人公众号,更多精彩与您分享。 MySQL数据库宕机,数据页损坏问题,启动不起来,该如何排查和解决,本文将为你说明具体的排查过程。 查看MySQL error日志 查看 MySQL error日志,排查哪个表(表空间

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

让树莓派智能语音助手实现定时提醒功能

最初的时候是想直接在rasa 的chatbot上实现,因为rasa本身是带有remindschedule模块的。不过经过一番折腾后,忽然发现,chatbot上实现的定时,语音助手不一定会有响应。因为,我目前语音助手的代码设置了长时间无应答会结束对话,这样一来,chatbot定时提醒的触发就不会被语音助手获悉。那怎么让语音助手也具有定时提醒功能呢? 我最后选择的方法是用threading.Time

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

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

C#实战|大乐透选号器[6]:实现实时显示已选择的红蓝球数量

哈喽,你好啊,我是雷工。 关于大乐透选号器在前面已经记录了5篇笔记,这是第6篇; 接下来实现实时显示当前选中红球数量,蓝球数量; 以下为练习笔记。 01 效果演示 当选择和取消选择红球或蓝球时,在对应的位置显示实时已选择的红球、蓝球的数量; 02 标签名称 分别设置Label标签名称为:lblRedCount、lblBlueCount

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

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