Is there any case in which the following structure is needed?
using (Something something = new Something())
{
try
{
}
finally
{
something.SomeCleanup();
}
}
Or, should all cleanup tasks be performed in the implicit something.Dispose() call?
Here is the offending code:
public static DataTable GetDataTable(string cmdText, IEnumerable<Parameter> parameters)
{
// Create an empty memory table.
DataTable dataTable = new DataTable();
// Open a connection to the database.
using (SqlConnection connection = new SqlConnection(ConfigurationTool.ConnectionString))
{
connection.Open();
// Specify the stored procedure call and its parameters.
using (SqlCommand command = new SqlCommand(cmdText, connection))
{
command.CommandType = CommandType.StoredProcedure;
SqlParameterCollection parameterCollection = command.Parameters;
foreach (Parameter parameter in parameters)
parameterCollection.Add(parameter.SqlParameter);
try
{
// Execute the stored procedure and retrieve the results in the table.
using (SqlDataAdapter dataAdapter = new SqlDataAdapter(command))
try
{
dataAdapter.Fill(dataTable);
}
catch
{
dataTable.Dispose();
dataTable = null;
}
}
finally
{
//parameterCollection.Clear();
}
}
}
return dataTable;
}
NOTE: I have defined the Parameter class so users of this function don't have to deal with the creation of SqlParameters directly. The SqlParameter property of the Parameter class can be used to retrieve an SqlParameter.
At some point, my program does the following (cannot post the code, because it involves a lot of classes; basically, I have a mini-framework creating lots of objects):
- Create an array of
Parameters. GetDataTable('sp_one', parameters).GetDataTable('sp_two', parameters).
Somethingclass. Actually, mySomethingclasses are Microsoft's ownSqlConnectionandSqlParameter. Common sense says Microsoft programmers would be intelligent enough to close open database connections in theDisposemethod (which, of course, does not mean they should not provide theClosemethod as well), but the documentation says nothing. I really miss using C++ and having access to the STL's source code. – Eduardo León Mar 31 '11 at 14:38SqlConnection.Disposedoes the same whatClosedoes (except for being able to reopen afterCloseas opposed toDispose). If your connections are not actually closed, it may be due to connection pooling. Btw, you actually have access to the source code, it has been released, also you can use Reflector reflector.red-gate.com/download.aspx?TreatAsUpdate=1 – František Žiačik Mar 31 '11 at 14:55SqlConnection.Disposeactually closed the connection, so that's my fault for being ignorant. But I am quite sure I got an "Another SqlParameterCollection contains the SqlParameter" error when I tried adding a SqlParameter to a SqlParameterCollection for a second time, even when the firstSqlParameterCollectionbelonged to an already disposedSqlCommand. – Eduardo León Mar 31 '11 at 15:01