Onvif_Alarm_Txt & Onvif_Alarm_Text ???

Current Development version likely to have breaking changes
Post Reply
IgorA100
Posts: 70
Joined: Sat Feb 03, 2024 11:55 am

Onvif_Alarm_Txt & Onvif_Alarm_Text ???

Post by IgorA100 »

The code uses the variables "Onvif_Alarm_Txt" & "Onvif_Alarm_Text"
Perhaps this is a mistake and some kind of confusion?

Somewhere like this:

Code: Select all

  `ONVIF_Alarm_Text` VARCHAR(30) DEFAULT 'MotionAlarm',
Somewhere like this:

Code: Select all

    ALTER TABLE zm.Monitors ADD Onvif_Alarm_Txt varchar(30) DEFAULT 'MotionAlarm' NULL;

Code: Select all

  // get alarm text from table.
  onvif_alarm_txt = std::string(dbrow[col] ? dbrow[col] : ""); col++;
Post Reply