Drupal 6 中已建立的数据库连接的关闭

发布于 2024-11-25 03:04:51 字数 207 浏览 0 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

请别遗忘我 2024-12-02 03:04:51

这是来自 php 文档。

通常不需要使用 mysql_close(),因为非持久打开的链接会在脚本执行结束时自动关闭。另请参阅释放资源。

http://php.net/manual/en/function.mysql-close.php

This is from the php documentation.

Using mysql_close() isn't usually necessary, as non-persistent open links are automatically closed at the end of the script's execution. See also freeing resources.

http://php.net/manual/en/function.mysql-close.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文