在模型类中设置新值后如何更新sqlite数据库?

时间:2018-11-20 07:57:26

标签: sqlite sql-update

这是我的模型课程。我有一个回收站视图,其中我的数据从sqlite数据库中显示。当我编辑编辑文本时,我将新值设置为模型类。现在我想用新值更新数据库

package com.example.user.paperflyv0;

import android.system.StructTimespec;

public class UpdateAssign_Model {
    private String ex_name;
    private String count;

    public UpdateAssign_Model(String ex_name,String count) {
        this.ex_name = ex_name;
        this.count = count;

    }

    public void setEx_name(String ex_name) {
        this.ex_name = ex_name;
    }

    public void setCount(String count) {
        this.count = count;
    }

    public String getEx_name() {
        return ex_name;
    }

    public String getCount() {
        return count;
    }
}

0 个答案:

没有答案