2

是否可以连接或将数据从mysql复制到sqlite?我只需要将数据从mysql存储到sqlite。

我使用 mysql 是因为我正在开发 android 中的在线应用程序并用于更新目的。我想将数据从 mysql 复制到 sqlite,因此即使没有互联网并且由于该 sqlite 数据库,我的 android 应用程序仍将运行。

请帮忙。谢谢

4

1 回答 1

1

如果您想将您的应用程序与我的 sql server 连接,您可以使用一些 rest 服务连接数据库,并将结果返回给调用应用程序。

通过以下链接检查创建、使用 rest php 服务的示例:

http://www.androidhive.info/2012/01/android-login-and-registration-with-php-mysql-and-sqlite/

http://www.androidhive.info/2012/05/how-to-connect-android-with-php-mysql/

http://www.helloandroid.com/tutorials/connecting-mysql-database

通过这些方法,您可以从 mysql 服务器获取数据,进一步在设备数据库上创建和执行数据库操作,请使用以下链接:

http://www.devx.com/wireless/Article/40842

于 2012-07-30T10:44:20.700 回答