91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android數據庫操作工具類分享

發布時間:2020-09-17 21:51:39 來源:腳本之家 閱讀:163 作者:JustingWang_1 欄目:移動開發

本文實例為大家分享了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;
  }

}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

普兰店市| 滦平县| 西乌珠穆沁旗| 靖宇县| 惠来县| 阿拉善左旗| 确山县| 土默特右旗| 西乌珠穆沁旗| 开封市| 海城市| 宁远县| 高邑县| 北碚区| 兴和县| 郴州市| 宁河县| 利津县| 全州县| 保康县| 福贡县| 岫岩| 东港市| 新干县| 吉安县| 边坝县| 永善县| 盐池县| 陕西省| 甘孜县| 惠东县| 浦城县| 富裕县| 葵青区| 丰顺县| 乌兰察布市| 静安区| 马公市| 汉寿县| 金平| 建阳市|