是否可以在node-postgres中设置postgres search_path?

时间:2013-04-06 05:20:59

标签: node.js postgresql node-postgres

我正在将应用程序从RoR移动到Express.js。 ActiveRecord postgres适配器具有search_path配置选项。

是否可以为客户端设置search_path?

1 个答案:

答案 0 :(得分:0)

如果可能的话,我的偏好是在数据库或用户上出现这种情况。

ALTER [DATABASE or USER] [name] set search_path='[searchpath]'

如果失败,您可以始终确保通过构建连接逻辑来设置搜索路径:

SET search_path='[searchpath]'

这将在连接上设置它。