Ruby on Rails 和 Netezza 后端
任何人都知道如何使用 ruby on Rails 从 Netezza 后端提取数据。
任何资源都会有所帮助。
Anyone know of how they would go about pulling data from a Netezza backend in ruby on rails.
Any resources would help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我强烈考虑使用 JRuby,然后使用 Neteeza 的 JDBC 驱动程序。有关在 Rails 中使用 JDBC 和 JRuby 的更多信息,请查看 https://github.com/nicksieger/ activerecord-jdbc-适配器
I would strongly consider using JRuby and then use the JDBC drivers for Neteeza. For more information on using JDBC and JRuby with rails, check out https://github.com/nicksieger/activerecord-jdbc-adapter
我有一个企业级 Ruby on Rails 3 Web 应用程序,托管在 Windows Server 2008 上,它通过 ActiveRecord 连接到 SQL Server,通过 DBI 连接到 Netezza。我测试了以各种方式连接到 Netezza:
I have an enterprise Ruby on Rails 3 web application, hosted on Windows Server 2008, which connects to SQL Server via ActiveRecord and Netezza via DBI. I tested connecting to Netezza in various ways:
我们不久前对此进行了修改,并决定使用 JRuby + JDBC + 自定义 AR 适配器 gem。这很粗糙,但我制作了 activerecord-netezza-adapter gem 并且到目前为止它正在工作。
(你好,卡比!)
We tinkered with this a little while back and settled on JRuby + JDBC + custom AR adapter gem. It's rough, but I made the activerecord-netezza-adapter gem and it's working so far.
(Hola, Kirby!)