Android实用程序将sqlite db发送到服务器

发布于 2024-11-07 15:04:06 字数 135 浏览 5 评论 0原文

在我的应用程序中,我想将存储在本地 sqlite 数据库中的数据发送到服务器的 sqlserver 数据库。 android 是否有任何实用程序可以直接发送.db 文件并读取服务器中的内容。编写多个插入语句会使代码变得非常冗长,并且会导致主键冲突。请帮忙。

In my application I want to send data stored in the local sqlite database to server's sqlserver database. Is there any utility for android to directly send the .db file and read the content in the server. Writing multiple insert statements will make code very lengthy and will cause in the primary key violation. Please help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

捂风挽笑 2024-11-14 15:04:06

创建数据库时,您将指定数据库名称(例如products.db)。如果您的应用程序包名称是 com.example.yourapplicationpackage,您可以使用以下路径访问该文件: /data/data/com.example.yourapplicationpackage/databases/products.db

然后您可以发送该文件就像服务器上的任何其他文件一样(使用 POST 请求)。在服务器端,您需要类来读取 SQLite 3 数据库文件,这应该不难找到。

When you create the database you are specifying the database name (for instance products.db). If your application package name is com.example.yourapplicationpackage, you can access the file using the path: /data/data/com.example.yourapplicationpackage/databases/products.db

Then you can send that file just like any other file to your server (use a POST request). On the server side, you need classes to read a SQLite 3 database file, this should not be hard to find.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文