您可以连接到 SQL 数据库并使用该数据库中的数据来更新 SQLite3 中的表吗?
我是 Ruby-on-rails 的新手,需要能够构建一个 Rake 文件来连接到公司数据源,然后使用该数据更新 SQLite3 中的表。
这可能吗?我应该使用 rake 文件吗?
我最终想使用计时器每天运行更新。
I am new to Ruby-on-rails and need to be able to build a Rake file that will connect to a corporate data source and then use the data to update a table in SQLite3.
Is that possible? Should I be using a rake file?
I would eventually want to use a timer to run an update on a daily basis.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这确实是可能的(只要您有权建立两个连接)。这看起来不像是 Ruby on Rails 项目的任务;一个简单的 ruby 脚本就可以完成这项工作,您可以使用 cron 或任何其他调度程序工具(取决于您使用的平台)来安排它。
it is possible indeed (as long as you have the permissions to establish both connections). It does not look like a task for a ruby on rails project; a simple ruby script will do the job, and you can schedule it using cron or any other scheduler tool (depending on the platform you use).