在SQLite中选择并显示三个编辑文本

时间:2017-03-06 02:22:30

标签: android mysql database sqlite methods

有人可以帮我解决方法/数据库/查询问题。事情是在这里我想传递我的数据库上的数据,然后搜索然后显示。我打算传递一个唯一的密钥和3 edittext,所以我的数据库和数据库是在edittext上设置文本的人取决于我的唯一键。

这是我的示例数据库代码(我尝试但我知道这是错误的):

我使用以下代码在oncreate上调用db(controller):

Bundle b = new Bundle();
    b = getIntent().getExtras();
    String descpe = b.getString("pedesc");

    context = this;
    controller = new DB_ST(this,"",null,1);

    controller.list_pw_details(descpe, etDesc, etPass, etNote);

数据库方法(查询):

public void list_pw_details(String unqdesc, EditText desc, EditText pass, EditText note){
    Cursor cursor = this.getReadableDatabase().rawQuery("SELECT * FROM PASSWALL WHERE PW_DESC='"+unqdesc+"'", null);
    desc.setText("");
    pass.setText("");
    note.setText("");
    while (cursor.moveToNext()) {
        desc.append(cursor.getString(1));
        pass.append(cursor.getString(2));
        note.append(cursor.getString(3));
    }
}

1 个答案:

答案 0 :(得分:0)

sum(dataByDates(Sys.Date()-10, Sys.Date()-1, metric = "Sessions"))
[1] 29979

mean(dataByDates(Sys.Date()-10, Sys.Date()-1, metric = "Sessions"))
[1] 2997.9