2021-04-19 Fred Gleason <fredg@paravelsystems.com>

* Fixed regression in 'RDSystem' that caused SQL errors.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2021-04-19 17:51:25 -04:00
parent 8634c926d2
commit 536e7874dc
2 changed files with 3 additions and 1 deletions

View File

@@ -243,7 +243,7 @@ void RDSystem::SetRow(const QString &param,QString value) const
param+"`=NULL";
}
else {
sql=QString("update `SYSTEM` set ")+
sql=QString("update `SYSTEM` set `")+
param+"`='"+RDEscapeString(value)+"'";
}
RDSqlQuery::apply(sql);