Drupal 6 中已建立的数据库连接的关闭
我是 drupal 的新手,我正在尝试将 drupal 6 用于我的 Web 应用程序。我已经了解了 drupal 的基本代码流程,并了解到 bootstrap.inc 中的函数将在每个 drupal 请求上执行。数据库连接写在同一个文件中,但是代码中没有提到关闭已建立的数据库连接。
所以我的疑问是,如何关闭这些连接?如果它保持打开状态,会产生任何错误吗?
谢谢..
I am new to drupal and I am trying to use drupal 6 for my web application. I have gone through the basic code flow of drupal and came to know that functions in bootstrap.inc is to be executed on every drupal request. The database connections are written in the same file, but closing the established database connections are not mentioned anywhere in the code.
So my doubt is, how to close these connections? does it create any errors if it is left open?
Thanks..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是来自 php 文档。
http://php.net/manual/en/function.mysql-close.php
This is from the php documentation.
http://php.net/manual/en/function.mysql-close.php