Patch 5.9.1 (TImeouts beim Send)

This commit is contained in:
Daniel Schick 2020-01-29 16:42:56 +00:00
parent df6cd84153
commit fc9ff0b26f
4 changed files with 14 additions and 10 deletions

Binary file not shown.

View File

@ -212,20 +212,24 @@ namespace bsmd.database
public List<MessageCore> GetMessageCoresWithNSWStatusFlag()
{
List<MessageCore> result = new List<MessageCore>();
MessageCore aMessageCore = new MessageCore();
SqlCommand cmd = new SqlCommand();
SqlCommand cmd = new SqlCommand();
aMessageCore.PrepareLoadCommand(cmd, Message.LoadFilter.QUERY_NSW_STATUS);
SqlDataReader reader = this.PerformCommand(cmd);
List<DatabaseEntity> cores = aMessageCore.LoadList(reader);
List<MessageCore> result = new List<MessageCore>();
foreach (MessageCore core in cores)
if (reader != null)
{
this.LoadCustomer(core);
result.Add(core);
}
List<DatabaseEntity> cores = aMessageCore.LoadList(reader);
if (this._closeConnectionAfterUse) this.Disconnect();
foreach (MessageCore core in cores)
{
this.LoadCustomer(core);
result.Add(core);
}
if (this._closeConnectionAfterUse) this.Disconnect();
}
return result;
}

View File

@ -2,6 +2,6 @@
[assembly: AssemblyCompany("schick Informatik")]
[assembly: AssemblyProduct("BSMD NSW interface")]
[assembly: AssemblyInformationalVersion("5.9.0")]
[assembly: AssemblyInformationalVersion("5.9.1")]
[assembly: AssemblyCopyright("Copyright © 2014-2019 schick Informatik")]
[assembly: AssemblyTrademark("")]

View File

@ -1,4 +1,4 @@
using System.Reflection;
[assembly: AssemblyVersion("5.9.0.*")]
[assembly: AssemblyVersion("5.9.1.*")]