如何将解析后的xml文件存储到Android中的sqlite数据库中?
我正在做一个项目,我需要在服务器mysql数据和本地sqlite数据之间同步数据...... 在 php 的帮助下,我创建了 mysql 数据 XML 文件......所以现在我知道 xml 数据的解析,但如何将它存储在 sqlite(本地)数据库中?
请帮助我,我将非常感谢你的帮助......
i am making a project in that i required synchronize data between server mysql data and local sqlite data...
With the help oh php i have created mysql data XML file.... so now i know the parsing of xml data but how can i store it in sqlite(local) database ??
Please help me i ll appreciate your help ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因此,如果您正在解析 xml 文件,您有键值结构,也许还有其他东西,因此创建数据库,其中包含由参数命名的列,为每行插入节点名称或其自己的 id,然后插入您需要的值(如果您只需要使用)键值也许是将其放入共享首选项的更好方法。
另一种选择是,只需将整个 xml 保存为标准字符串(文本),然后您就可以获取它并再次解析它。
一切都取决于你拥有什么样的结构。
此处有关在数据库中存储的信息
So if you are parsing xml file you have key-value structure and maybe something else so create database with column named by parameters, for each row insert name of node or its own id and then values which you need, if you need to use only key-value maybe better way it'll be to put it into shared preferences.
Another option, jut save whole xml as a standard string(text) and then you can get it and parse it once again.
Everything depends on that what kind of structure you have.
HERE information about storing in database