欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

Android数据库操作工具类分享

时间:2021-02-07 14:50:56|栏目:Android代码|点击:

本文实例为大家分享了Android数据库操作工具类的具体代码,供大家参考,具体内容如下

HistoryDAO

public class HistoryDAO {
  private DBConnection dbc = null;
  private SQLiteDatabase db = null;
  private Context context;

  //数据库上下文
  public HistoryDAO(Context context) {
    this.context = context;
  }
  //打开数据库
  public HistoryDAO open() {
    dbc = new DBConnection(context);
    db = dbc.getWritableDatabase();
    return this;
  }

  //关闭数据库
  public void closeAll() {
    db.close();
    dbc.close();
  }

//  // 增加
//  public void add(Search_HistoryData data, String type) {
//    open();
//    ContentValues values = new ContentValues();
//    values.put("content", data.getContent());
//    values.put("type", data.getType());
//    db.insert("history", null, values);
//    closeAll();
//  }

  // 增加
  public void add(Search_HistoryData data, String tableName) {
    open();
    ContentValues values = new ContentValues();
    values.put("content", data.getContent());
    db.insert(tableName, null, values);
    closeAll();
  }

  // 增加 工具类的最后五个专用
  public void addLawTool(Search_HistoryData data, String tableName) {
    open();
    ContentValues values = new ContentValues();
    values.put("content", data.getContent());
    values.put("_id", data.getId());
    db.insert(tableName, null, values);
    closeAll();
  }

  // 全查询
  public List getAll(String TableName) {
    open();
    List ar = new ArrayList();
    Cursor c = db.rawQuery("select * from " + TableName, null);
    while (c.moveToNext()) {
      Map map = new HashMap();
      map.put("_id", c.getInt(c.getColumnIndex("_id")));
      map.put("content", c.getString(c.getColumnIndex("content")));
      ar.add(map);
    }
    closeAll();
    return ar;
  }

  // 删除 根据id删除
  public void delete(String tableName, int uid) {
    open();
    db.delete("history", "uid=" + uid, null);
    closeAll();
  }

  //清空表中所有数据
  public void delete(String tableName) {
    open();
    db.delete(tableName, null, null);
    closeAll();
  }

  //判断是否存在
  public boolean searchResult(String tableName, String key) {
    open();
    Boolean booleans =
        db.rawQuery("select * from " + tableName + " where content = ?", new String[]{key}).moveToNext();
    closeAll();
    return booleans;
  }

  //根据库查询表字段
  public boolean searchResultToType(String content, String type) {
    open();
    Boolean booleans =
        db.rawQuery("select * from history where content = ? and type = ?", new String[]{content, type}).moveToNext();
    closeAll();
    return booleans;
  }

}

上一篇:Android实现ImageView图片缩放和拖动

栏    目:Android代码

下一篇:android第三方分享方式的简单实现

本文标题:Android数据库操作工具类分享

本文地址:http://www.codeinn.net/misctech/58850.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有