Is it possible to execute update query in android using JDBC driver

This question already has an answer here:

  • How do I UPDATE from a SELECT in SQL Server? 27 answers

  • You can connect to MySQL or any remote database from android but it is not recommended at all. The recommended way is to write a simple web service that connects your android app and database engine. You can use PHP (the simplest way) to write web service. Data will be sent to the database via web service and the result can be retrieved in response.

    链接地址: http://www.djcxy.com/p/16872.html

    上一篇: C#等价于SQL Server数据类型

    下一篇: 是否有可能在Android中使用JDBC驱动程序执行更新查询