嗨,我通过调用soap webservice获得了将选定微调器项目插入mysql数据库的解决方案。感谢您提供好主意。但我无法开发更新微调器值保存在mysql数据库中。请参考我的代码:android代码
网络服务代码 ...以上两个链接都用于为android和网络服务插入代码...请帮助我...更新微调器值的更改在mysql数据库中也发生了更改...。
public class update {
public String insertData(String status,String username){
try{
Class.forName("com.mysql.jdbc.Driver");
Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/androidlogin","root","");
PreparedStatement statement = con.prepareStatement("UPDATE `user` set `status` = 'C' where `status` = 'Q'");
int result = statement.executeUpdate();
}
catch(Exception exc){
System.out.println(exc.getMessage());
}
return "Updation successfull!!";
}
}
请帮助我如何为此更新功能编写android代码...