RMySQL::dbListConnections 不存在了?
RMySQL::dbListConnections no longer exists?
所以,我刚刚开始研究 RMySQL -- v.0.11.0.9000 -- and I've noticed that when trying to check if I had any open connections -- using DBI v. 0.3.1.9008 的开发版本——我收到错误:
> DBI::dbListConnections(MySQL())
Error in (function (classes, fdef, mtable) :
unable to find an inherited method for function ‘dbListConnections’ for signature ‘"MySQLDriver"’
表明 RMySQL
不再为其驱动程序扩展 dbListConnections
(请原谅我的临时术语)...我的解释是否正确,因为我们不再需要清理我们的数据库连接?
如果没有,我们应该如何清理自己?
您不必自己清理,但仍然建议这样做。完成后只需 dbDisconnect(con)
。如果您碰巧没有易于访问的格式的 con
,请不要担心。
所以,我刚刚开始研究 RMySQL -- v.0.11.0.9000 -- and I've noticed that when trying to check if I had any open connections -- using DBI v. 0.3.1.9008 的开发版本——我收到错误:
> DBI::dbListConnections(MySQL())
Error in (function (classes, fdef, mtable) :
unable to find an inherited method for function ‘dbListConnections’ for signature ‘"MySQLDriver"’
表明 RMySQL
不再为其驱动程序扩展 dbListConnections
(请原谅我的临时术语)...我的解释是否正确,因为我们不再需要清理我们的数据库连接?
如果没有,我们应该如何清理自己?
您不必自己清理,但仍然建议这样做。完成后只需 dbDisconnect(con)
。如果您碰巧没有易于访问的格式的 con
,请不要担心。