DBD::Mysql 与 ODBC 有何关系?
在 http://kobesearch.cpan.org/htdocs/DBD- mysql/DBD/mysql.pm.html 有一些对 ODBC 的引用,但据我所知,DBD::mysql 在连接堆栈中与 DBD::ODBC 是“并行的”。
有谁知道为什么那里提到 ODBC 吗?
In http://kobesearch.cpan.org/htdocs/DBD-mysql/DBD/mysql.pm.html there are certain references to ODBC but afaik DBD::mysql is "parallel" in the connection stack to DBD::ODBC.
Does anyone know why is ODBC mentioned there?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DBD::mysql
支持 ODBC 风格的 DSN,例如DBI:mysql:database=test;host=localhost
。它包含一些解析这些 DSN 的函数。
DBD::mysql
supports the ODBC style DSNs likeDBI:mysql:database=test;host=localhost
.It contains some functions to parse these DSNs.