postgresql – 使用Ecto更改Postgres search_path

前端之家收集整理的这篇文章主要介绍了postgresql – 使用Ecto更改Postgres search_path前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想为我的Phoenix应用程序使用特定的Postgres架构.

我尝试使用Ecto.Repo.after_connect / 1回调来实现这一点,但似乎在超时前递归创建新的数据库连接大约10次.

这是我的回购文件

defmodule MyApp.Repo do

  use Ecto.Repo,otp_app: :my_app
  use Scrivener,page_size: 20

  def after_connect(_pid) do
    IO.puts "after_connect"
    Ecto.Adapters.sql.query(MyApp.Repo,"SET search_path TO 'my_app';",[])
  end

end
我认为超时发生是因为在ecto的设置周期中after_connect还为时尚早.使用ecto 2(仍然处于测试阶段)以下工作,无论它是否在ecto 1中工作,都将取决于您是否将连接作为after_connection中的参数获得).

在您的回购中:

defmodule Et.Repo do
  use Ecto.Repo,otp_app: :et

  def set_search_path(conn,path) do
    {:ok,_result} = Postgrex.query(conn,"SET search_path=#{path}",[])
  end
end

在config.exs文件中:

config :et,Et.Repo,adapter: Ecto.Adapters.Postgres,database: "......",username: "......",hostname: "localhost",after_connect: {Et.Repo,:set_search_path,["app,public,extensions"]}

希望有所帮助,– 基普

原文链接:https://www.f2er.com/postgresql/191668.html

猜你在找的Postgre SQL相关文章