|
分類:[C#]
SqlConnection SqlCommand SqlDataReader とオブジェクトを作成してSqlServerを読んでいるのですが SqlConnectionをdispose()すれば、SqlCommand,SqlDataReaderはdispose()をする必要は無いのでしょうか?
同じ意味になりますがusingを使用した場合にも、SqlCommand,SqlDataReaderに対するusing句は不要でしょうか? using(SqlConnection con = new SqlConnection()) { using(SqlCommand cmd = new SqlCommand()) { using(SqlDataReader = cmd.ExecuteReader()) { } } }
|