如何将 Ruby on Rails 3.1 与 JRuby 上的 DataMapper 和 DB2/400 数据库结合使用?

发布于 2024-11-30 05:01:27 字数 1539 浏览 0 评论 0原文

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

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

发布评论

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

评论(1

脸赞 2024-12-07 05:01:27

activerecord-jdbc-adapter 具有对 DB2 的内置支持。您是否存在特定的架构问题?我已经能够让 ActiveRecord 与多个遗留模式一起使用。

更新

对于不匹配的表名,只需放入

set_table_name "my_table_name"

模型即可。您可以指定关系中使用的类和/或外键:(

has_many :somethings, :class_name => 'something_else', :foreign_key => 'something_else_id'

有关更多选项,请参阅 http://apidock.com/rails/ActiveRecord/Associations/ClassMethods)。

对于复合主键,请参阅复合主键 gem。

activerecord-jdbc-adapter has built-in support for DB2. Is there a particular schema problem you have? I've been able to get ActiveRecord to work with several legacy schemas.

Update:

For table names that don't match, simply put

set_table_name "my_table_name"

in the model. You can specify the class used in a relationhip, and/or the foreign key:

has_many :somethings, :class_name => 'something_else', :foreign_key => 'something_else_id'

(For more of the options see http://apidock.com/rails/ActiveRecord/Associations/ClassMethods).

For composite primary keys, see the Composite Primary Keys gem.

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