ERLANG ODBC 是否支持连接池?
Does ERLANG ODBC support connection Pooling?
Erlang/OTP 的 odbc
模块是否支持连接池?
搜索这个直接导致 very old documentation 明确指出 “不支持连接池。”
当前的 Erlang odbc
文档没有提到如何配置它,或者它是否可用。
我根本没有使用 odbc,但从 Erlang ODBC doc
可以看出
Erlang ODBC application is designed using the version 3.0 of the
ODBC-standard
并根据此页面 ODBC Connection pooling
As of release 2.0.0 of unixODBC the driver supports connection
pooling. This is a method to increase the connection speed of drivers,
but leaving connection's open and reusing them. This document
discusses how to implement connection pooling in unixODBC, and also
what you should be aware of before doing it.
也就是说Erlang ODBC支持连接池
但我觉得您不能直接从 Erlang 应用程序接受池的任何选项
Erlang/OTP 的 odbc
模块是否支持连接池?
搜索这个直接导致 very old documentation 明确指出 “不支持连接池。”
当前的 Erlang odbc
文档没有提到如何配置它,或者它是否可用。
我根本没有使用 odbc,但从 Erlang ODBC doc
可以看出Erlang ODBC application is designed using the version 3.0 of the ODBC-standard
并根据此页面 ODBC Connection pooling
As of release 2.0.0 of unixODBC the driver supports connection pooling. This is a method to increase the connection speed of drivers, but leaving connection's open and reusing them. This document discusses how to implement connection pooling in unixODBC, and also what you should be aware of before doing it.
也就是说Erlang ODBC支持连接池
但我觉得您不能直接从 Erlang 应用程序接受池的任何选项