如何在rails-3应用程序中比较两个数据库(mysql)的值

发布于 2024-12-08 23:37:27 字数 538 浏览 1 评论 0原文

如何比较 Rails 应用程序中给定的两个字段

  • Database1:report_db,

    • 表名称:详细信息,
    • 字段:v_id
  • 数据库2:gen_db,

    • 表名称:漏洞,
    • 字段:o_id

Database.yml 文件

  • 开发:

    • 适配器:mysql
    • 数据库:gen_db
    • 主机:本地主机
    • 用户名:root
    • 密码:jeet
  • 报告:

    • 适配器:mysql
    • 数据库:report_db
    • 主机:本地主机
    • 用户名:root
    • 密码:jeet

如果需要任何 gem,那么请也提及如何在 Rails 应用程序中使用该 gem

How to compare under given two fields in rails application

  • Database1 : report_db,

    • table name : detail,
    • field : v_id
  • Database2 : gen_db,

    • table name : vulnerabilities,
    • field : o_id

Database.yml file

  • development:

    • adapter: mysql
    • database: gen_db
    • host: localhost
    • username: root
    • password: jeet
  • report:

    • adapter: mysql
    • database: report_db
    • host: localhost
    • username: root
    • password: jeet

If any gem is required then plz also mention how to use that gem in rails application

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心碎无痕… 2024-12-15 23:37:27

这似乎是一个类似的问题,它提供了选项使用建立_连接调用动态切换连接并指定数据库连接详细信息。

这是解决您的问题的一种方法。

This seems to be a similar question, which gives the option of switching connection dynamically using the establish_connection call and specifying the db connection details.

Its one way to solve your problem.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文