在 DataMapper 中对单个请求使用不同的数据库用户
我正在开发一个 Rails 3 应用程序,该应用程序调用具有非常严格的权限结构的旧数据库。记录可见性是按数据库用户设置的,因此在查看受限记录时,我需要使用用户的凭据来发出选择请求。
我可以使用 DataMapper.setup 更改与我连接的用户,但问题是这不是特定于请求的:它为所有传入的请求设置它。
如何设置 DataMapper 对单个数据库使用特定的数据库用户或一小组查询,同时不影响应用程序的其余部分?
I'm working on a Rails 3 application that makes calls to a legacy database that has a very rigid permissions structure. Record visibility is set per database user, so when viewing restricted records, I need to use the user's credentials to make the select request.
I can use DataMapper.setup to change the user I'm connected with, but the problem is that this is not request specific: it sets it for all requests coming in.
How can I set DataMapper to use a specific database user for a single or small set of queries, while not affecting the rest of the application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过使用多个数据存储连接?例如,
您可以像平常一样使用
default
连接,并通过将代码包装在块中来使用restricted
连接:更多信息可以在http://datamapper.org/docs/misc。
Have you tried using multiple data-store connections? e.g.
You can then use the
default
connection as normal, and use therestricted
connection by wrapping code in a block:More information can be found on http://datamapper.org/docs/misc.