如何检查SQLite中的数据,如果已经存在更新或插入Android



我想检查SQLite中的数据,如果已经存在可以更新或插入。我正在检查我在下面提到的这样的代码。

法典:

public long  addmenus(String navigationdrawer,String optionname)
    {
        SQLiteDatabase menus=this.getWritableDatabase();
        try {
        ContentValues values=new ContentValues();
        values.put(HEADER_NAME,navigationdrawer);
        values.put(CHILD_NAME,optionname);
       // menus.insert(TABLE_NAME,null,values);
           // String owner=optionname;
            Cursor cursor = menus.rawQuery("select * from TABLE_NAME where CHILD_NAME ='"+ optionname +"'", null);
        if(cursor.getCount()<1)
        {
            //execute insert query here
            long rows = menus.insert(TABLE_NAME, null, values);
            return rows;
            // return rows inserted.
        }
        else
        {
            //Perform the update query
            String strFilter = "CHILD_NAME" + optionname;
            long updaterow=menus.update(TABLE_NAME,values,strFilter,null);
            return updaterow;
            // return rows updated.
        }
       // menus.close();
    } catch (Exception e) {
        return -1;
    }
        finally {
            if (menus != null)
                menus.close();
        }
    }

我的活动:

我将整个json数据转换为字符串对象,然后插入SQLite。

  String productpage=jsonObject.toString();
     db.addmenus(productpage,"Navigationmenus");

但它不起作用。它无法插入到sqlite中。

任何人解决这个问题 很高兴欣赏。 提前致谢

你可以像这样用户插入 WithOnConflict()

db.insertWithOnConflict(TABLE, null, yourContentValues, SQLiteDatabase.CONFLICT_REPLACE);

您可以使用此链接。该链接解释了如何查找表中可用的电子邮件地址,您可以更改列名称,表并传递相应的值。在您的方案中,您希望检查该名称是否已存在,因此您必须传递要查找的名称。如果名称存在,则此方法将返回 true 或 false。您可以验证是否必须根据响应插入或更新,即 false 表示您必须插入,否则如果为 true 意味着您必须更新。

你应该使用 replace into

REPLACE INTO table(...) VALUES(...);

问题不太清楚,但是,我认为您想检查数据/记录是否插入SQLite中。 您将需要定义一些额外的变量 long rowInsert insert()方法返回新插入行的行 ID,或在发生错误时返回 -1。

menus.insert(TABLE_NAME, null, values);
long rowInserted = db.insert(AddNewPhysicalPerson, null, newValues);
if(rowInserted != -1)
    Toast.makeText(myContext, "New row added :" + rowInserted, Toast.LENGTH_SHORT).show();
else
    Toast.makeText(myContext, "Something wrong", Toast.LENGTH_SHORT).show();

更新检查数据是在表还是列中?为此,您可以使用此代码

public boolean Exists(String id){
    Cursor res = getAllData();
    int count=0;
    while (res.moveToNext()){
        String email =res.getString(3);
        if(email.equals(id)){
            count++;
        }
    }
    if(count==0){
        return false;
    } else{
        return true;
    }
}

其次,您询问json首先将所有数据存储在任何列表运行时并从中获取字符串,然后您就可以存储在SQlite中

try {
        items = jsonObject.getJSONArray("myjsonattribute");
        List<MyAnySetterGetter> mList = new ArrayList<MyAnySetterGetter>();
        for (int i = 0; i < items.length(); i++) {
             JSONObject c = items.getJSONObject(i);
             String mfilename = c.getString("myjsonattribute2");
             mList.add(mfilename);
            }
    } catch (JSONException e) {
      //e.printStackTrace();
    }

然后使用上面的列表将数据从列表插入到 SQLite喜欢

String str1 = mList.get(position).getMYITEM1();
String str2 = mList.get(position).getMYITEM2();

在SQLite中插入str1和str2希望你能得到想法。

你应该

  1. 设置表的键,然后
  2. 插入
  3. (如果密钥存在,它将不再插入),然后
  4. 更新所有行。

相关内容

  • 没有找到相关文章

最新更新