Android实用程序将sqlite db发送到服务器
在我的应用程序中,我想将存储在本地 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建数据库时,您将指定数据库名称(例如
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.