-1

如果我必须在 mysql 数据库中插入数据,则意味着我们使用以下代码:

PropertyInfo unameProp =new PropertyInfo();
unameProp.setName("userName");//Define the variable name in the web service method
unameProp.setValue(selectedItem);//Define value for fname variable
unameProp.setType(String.class);//Define the type of the variable
request.addProperty(unameProp);

这里使用了addproperty....如何编写代码以更新android中mysql数据库中的数据...请帮助我...

4

1 回答 1

0

安卓支持sqlite

您将不得不在 android 中使用内容值进行 db 插入

    ContentValues values = new ContentValues();
     values.put("userName", selectedItem); 



     db.insert(yrtbl, null, values);
     db.close();
于 2012-08-24T07:37:26.677 回答