Sync up with changes from ARM64

This commit is contained in:
2025-05-01 14:08:33 -04:00
parent 148c236af2
commit c0384feb95
40 changed files with 494 additions and 365 deletions

View File

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