MacRuby - ActiveRecord 用于存储?
是否可以在 MacRuby Cocoa 应用程序中使用 ActiveRecord 进行存储和查询?
如果是的话,是否有任何资源可以说明如何实现?
有什么理由不应该使用 ActiveRecord 吗?
Is it possible to use ActiveRecord for storage and query in a MacRuby Cocoa application?
If it is, are there any resources that shows how?
Are there any reason why ActiveRecord should not be used?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。它是一个 Ruby 库,您可以毫无问题地使用它。
然而,ActiveRecord 是一个相当庞大的库。您可能不需要它的所有功能。如果您只需要连接到数据库并执行操作,我强烈建议您尝试Sequel gem。
Yes, it is. It's a Ruby library, you can use it without any problem.
However, ActiveRecord is a quite huge library. You might not need all its features. If you simply need to connect to a database and perform operations, I strongly encourage you to give Sequel gem a try.