【发布时间】:2012-08-24 07:31:40
【问题描述】:
如果我必须在 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数据库中数据的代码...请帮助我...
【问题讨论】:
-
Android 不支持 mysql。你是说服务器端吗?
-
Android 中的 MySQL 并不是解决这个问题的最简单方法...
-
是的,我知道...我必须在这里调用soap webservice
-
请参考这个链接:stackoverflow.com/questions/12104500/…给我解决方案
标签: java android mysql propertyinfo