Hi Stephen,
It worked, thanks! I have also one more question: I wanna save the data from OpenPDC in MySQL database, for it I created a table:
CREATE TABLE TimeSeriesMeasurement
(
SignalID NCHAR(36) NOT NULL,
Timestamp VARCHAR(24) NOT NULL,
Value DOUBLE NOT NULL
)
In the openPDC Manager, under Outputs > Manage Custom Outputs…
Name: ADO
Type: ADO: Archives measurements to an ADO data source
Connection String: BulkInsertLimit=500; DataProviderString={AssemblyName={Npgsql, Version=4.0.11.0, Culture=neutral, PublicKeyToken=5d8b90d52f46fda7}; ConnectionType=Npgsql.NpgsqlConnection; AdapterType=Npgsql.NpgsqlDataAdapter}; DbConnectionString={Server=hostname; Port=localhost; Database=test; User Id=anton; Password=somePassword}; TableName=TimeSeriesMeasurement; IDFieldName=SignalID; TimestampFieldName=Timestamp; ValueFieldName=Value; SourceIDs=PPA
Enabled: Checked
I did the following steps, but it’s not working - database is empty. Maybe u can help with that also? I also see the graph only with that value or line(screenshot).
Thanks in advance!
