我正在尝试弄清楚如何连接到postgres数据库,运行查询,然后断开连接。
查看Postgrex,我使用以下命令建立了一个连接
{:ok, pid} = Postgrex.start_link(hostname: "localhost", username: "postgres", password: "postgres", database: "postgres")然后,我使用以下命令执行查询
Postgrex.query!(pid, "SELECT user_id, text FROM comments", [])但是,我如何断开连接呢?
我想断开连接,因为我正在遍历N个数据库,并在所有数据库上运行相同的查询。
我尝试退出进程,例如Process.exit(pid, :bye),但它也杀死了衍生进程,因为它是从start_link/3启动的。我在Postgrex中找不到start/3函数。
发布于 2017-06-22 23:14:16
由于Postgrex.start_link返回的pid是一个GenServer,因此可以使用GenServer.stop/1
iex(1)> {:ok, pid} = Postgrex.start_link(hostname: "localhost", username: "postgres", password: "postgres", database: "postgres")
{:ok, #PID<0.277.0>}
iex(2)> GenServer.stop(pid)
:ok
iex(3)> GenServer.stop(pid)
** (exit) no process: the process is not alive or there's no process currently associated with the given name, possibly because its application isn't started
(stdlib) proc_lib.erl:797: :proc_lib.stop/3https://stackoverflow.com/questions/44702375
复制相似问题