Is it necessary to separately dispose of a SqlConnection as well as a SqlCommand?
I\'m doing some maintenance work on an application and found the following code:
<Yes, you will have to dispose (of) the connection separately. You can also see this in the source code: SqlCommand.Dispose()
does not close or dispose the connection it uses (by the way, that would be bad anyway as you could not execute multiple commands with the same connection).
yes , it is necessary to dispose the sqlconnection and sqlcommand object after your piece of code gets executed.
Now, there are two ways by which you can achieve this: