在 Padrino 中配置多个应用程序,每个应用程序都有不同的数据库和 ORM 映射器
如何在 Padrino 中配置多个应用程序,每个应用程序都有不同的数据库和 ORM 映射器? 我提到这个链接有找到了为每个应用程序维护不同 Gemfiles 的方法,每个应用程序都有他们需要的数据库 gem。但是如何为每个数据库进行配置,我可以在其中管理每个数据库的登录名和密码,端口等。
How to configure Multiple Applications in Padrino with each having different Database and ORM Mapper?
I referred to this link have got the way to Maintain different Gemfilesfor each App with each having gems of Database they require. But how to do configuration for each Databasem, where I can manage each databases loginid and password, port, etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 config/database.rb 中,您可以设置所有数据库配置。
一旦你这样做了,假设每个应用程序都有自己的模型,你应该能够毫无问题地工作。
In
config/database.rb
you can set all dbs configurations.Once you do that, supposing that each app have their own models you should be able to work without problems.