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

* Fixed various regressions in rdadmin(1) that caused SQL errors.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2021-04-19 17:41:59 -04:00
parent fdbf5fa164
commit 8634c926d2
5 changed files with 11 additions and 9 deletions

View File

@@ -1864,7 +1864,7 @@ void RDStation::remove(const QString &name)
{
QString sql;
sql=QString("delete from `DECKS where ")+
sql=QString("delete from `DECKS` where ")+
"`STATION_NAME`='"+RDEscapeString(name)+"'";
RDSqlQuery::apply(sql);