最好的解决方案能够更新数据库而不更新应用程序
感谢您花时间阅读我的问题。 我正在寻找适合我的应用程序的最佳解决方案的建议。该应用程序基本上是一个我希望用户能够搜索的对象数据库。由于新产品经常发布,数据库将由我自己而不是用户不断更新。我已经阅读了一些选项,并开始使用平面文件数据库来实现这一点,但意识到对数据库的每次更新都需要对应用程序进行更新,这是不希望的。我读到有关使用 SAX 解析器的信息,这似乎是一种可能性,但想知道是否还有其他可行的选择。提前致谢! -戴夫
Thanks for taking the time to read my question.
I am looking for advice on the best solution for my application. This application is basically going to be a database of objects that I would like the user to be able to search. The database is going to be constantly updated by myself, not the user, as new products are released often. I've read over a few options and began implementing this using a flat file database but realized that every update to the database would require an update to the app which is not desired. I read about using SAX Parser which seems like a possibility but wondering if there are any other viable options. Thanks in advance! -Dave
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用客户端通过互联网连接的集中式数据库。这样您就可以完全控制数据库,而不必通过不断更新来打扰客户端。
I would recommend using a centralized database that clients connect to over the internet. That way you can have full control of the db without having to bother clients with constant updates.