关闭 oracle 连接

发布于 2024-11-08 12:05:10 字数 189 浏览 0 评论 0原文

我使用过如下的 oracle 连接。

using (OracleConnection connection = OracleHelper.GetConnection(this.ConnectionStringKey))
{
  //some code
}

该连接需要手动关闭还是在函数执行时关闭?

I have used oracle connection like below.

using (OracleConnection connection = OracleHelper.GetConnection(this.ConnectionStringKey))
{
  //some code
}

This connection needs to be closed manually or it gets closed when the function is executed?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

夜吻♂芭芘 2024-11-15 12:05:10

当块超出范围时,将在连接上调用Dispose,因此连接将自动关闭。

这就是 using 语句的全部意义所在。

Dispose will be called on the connection when the block goes out of scope, so the connection will be closed automatically.

That's the whole point of having using statements.

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