关闭 oracle 连接
我使用过如下的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当块超出范围时,将在连接上调用
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.