使用当前应用程序数据库将应用程序发送到另一部手机
我有一个应用程序,其中创建了一个 SQLite 数据库来存储用户信息。所以我需要有一个选项,以便一个人可以使用数据库将应用程序发送给其他人。我该怎么做?
I have an application wherein I create a SQLite database for storing user information. So I need to have a option, so that a person can send app to other person WITH the db. How do I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您正在谈论一个 Web 应用程序,它使用 sqlite 在用户手机上的浏览器中存储数据。
无法从一个用户 (user1) 的 sqlite 数据库中获取数据并将其直接发送给另一个用户 (user2)。但是,您可以找到一种方法将数据库的内容传输到服务器应用程序,然后使这些内容可供其他用户使用。
您可以使用多种方法将数据从 user1 发送到服务器。您可以使用 Ajax POST 到服务器(如果服务器位于同一域中),构建一个表单来 POST 数据等。
向 user2 发送数据将是直接的。选择一种格式来传递数据(可能是 JSON),将数据从服务器发送到 user2,并让 user2 浏览器中的脚本读取数据并将其插入到本地 sqlite 存储中。
I assume you're talking about a web application which stores data using sqlite in the user's browser on their phone.
There would be no way to take the data from one user's (user1) sqlite database and send it directly to another user (user2). However, you could find a way to transfer the contents of the database to a server application, then make those contents available to the other user.
You can use a number of methods to send the data from user1 to the server. You could use an Ajax POST to the server (if the server is on the same domain), build a form to POST the data, etc.
Sending user2 the data would be straight forward. Pick a format to deliver the data in (JSON probably), send the data from the server to user2, and have a script in user2's browser read the data and INSERT it into their local sqlite storage.