标签: .net-3.5
我使用了如下的oracle连接。
using (OracleConnection connection = OracleHelper.GetConnection(this.ConnectionStringKey)) { //some code }
此连接需要手动关闭,还是在执行函数时关闭?
答案 0 :(得分:1)
Dispose,因此连接将自动关闭。
Dispose
这是using陈述的重点。
using