2019-07-29 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in rdlogmanager(1) that caused a 'no default column
	value' SQL error when generating a log.
This commit is contained in:
Fred Gleason 2019-07-30 18:58:23 -04:00
parent 1895c018b7
commit 33fa0eaa5a
2 changed files with 4 additions and 0 deletions

View File

@ -18885,3 +18885,6 @@
marker when importing audio from AudioVAULT.
2019-07-27 Fred Gleason <fredg@paravelsystems.com>
* Fixed regressions that made serial device operation unreliable.
2019-07-29 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdlogmanager(1) that caused a 'no default column
value' SQL error when generating a log.

View File

@ -787,6 +787,7 @@ bool RDSvc::generateLog(const QDate &date,const QString &logname,
QString().sprintf("TYPE=%d,",RDLogLine::Chain)+
QString().sprintf("SOURCE=%d,",RDLogLine::Template)+
QString().sprintf("TRANS_TYPE=%d,",RDLogLine::Segue)+
QString().sprintf("TIME_TYPE=%d,",RDLogLine::Relative)+
"LABEL=\""+RDEscapeString(nextname)+"\"";
q=new RDSqlQuery(sql);
delete q;