从多个来源收集数据并将其保存在本地数据库中
定期/自动从不同源(Db2、mysql、xml 等)提取数据并将这些数据以 XML 格式本地存储或存储在 DB 中的理想解决方案是什么?
PHP 是我的首选语言。
对象关系映射可以解决这个问题吗?
What would be the ideal solution to periodically/automatically pull the data from different sources (Db2, mysql, xml ect) and store this data locally in XML format or in DB?
PHP is my preferred language.
Is Object relational mapping a solution to it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要定期安排作业,请查看 cron(假设您在 Linux 计算机上)。 cron 作业与语言无关,可以运行任何可以从命令行运行的内容。
对象关系映射(ORM)是一种将数据库表映射到对象的技术。虽然您可以使用它来帮助解决您的问题,但它并不真正相关。
For periodic scheduling of jobs, have a look at
cron
(assuming your on a Linux machine). Acron
job is language agnostic and can run anything that can be run from the command line.Object Relational Mapping (ORM) is a technique to map database tables to objects. While you can use this to help solve your problem, it is not really relevant.