RealTimeToDB Add-Ins

RealTimeToDB Add-Ins

The data can be processed before sending to a database using an external data processor, a RealTimeToDB add-in.

This feature can be used for broadcasting data, for example.

The data processor must implement the IRDDataProcessor interface defined in IDataProcessor.dll:

void IRDDataProcessor.AppStart()
void IRDDataProcessor.AppStop()
bool IRDDataProcessor.ProcessRow(IRDDataRow data)

The ProcessRow method is called before every saving data to a database.

The add-in can read the column data of the current row and change it using the Item property.

The data processor add-in must be attached using the configuration setting. For example:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <appSettings>
    <add key="DataProcessor" value="RTDataBroadcastProcessor.dll"/>
  </appSettings>
</configuration>

You can find data processing add-in examples in C# and VB in the DataProcessor.zip file in the setup package.