Add HistoricalDA

This commit is contained in:
2025-04-01 12:57:05 -04:00
parent 6200e9dffc
commit a97a532d33

View File

@@ -101,7 +101,7 @@ namespace MarketData.DataAccess
finally finally
{ {
if(null!=sqlCommand)sqlCommand.Dispose(); if(null!=sqlCommand)sqlCommand.Dispose();
if (null != sqlDataReader) sqlDataReader.Close(); if (null != sqlDataReader) {sqlDataReader.Close();sqlDataReader.Dispose();}
if (null != sqlConnection) sqlConnection.Close(); if (null != sqlConnection) sqlConnection.Close();
} }
} }