epgsqlPG 的 Erlang 驱动
epgsql 是 PostgreSQL 的 Erlang 语言驱动程序。
示例代码:
{ok, C} = pgsql:connect("localhost", "username", [{database, "test_db"}]). ok = pgsql:close(C).
评论
epgsql 是 PostgreSQL 的 Erlang 语言驱动程序。
示例代码:
{ok, C} = pgsql:connect("localhost", "username", [{database, "test_db"}]). ok = pgsql:close(C).