如果我必须在 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数据库中的数据...请帮助我...