0
Items : 0
Subtotal :  0.00
View CartCheck Out
Chennai
Chennai
Singapore
Mumbai
Switzerland
+91 44 4091 2000 Mon - Fri 09:00 - 18:30 766/1, TEZ, Sakthi Towers 1, Anna salai, Chennai 600 002.
+6584181583 Mon - Fri 09:00 - 18:30 68 Circular Road, #02-01, 049422, Singapore.
+91 98848 35702 Mon - Fri 09:00 - 18:30 5, Powai Lake Heights, Mumbai 400 072
+41 (0)91 225 81 00 Mon - Fri 09:00 - 18:30 Equvera - ISV Techno SAGL, Via Ligornetto 6A, 6855 Stabio, Switzerland
Ceritified
ISO 9001:2018
The Best
#1 in India
#1 in Europe
#1 in Asian-pacific
Number #1
AUTOMATION SOLUTION PROVIDER
Talk to an Expert
0
Items : 0
Subtotal :  0.00
View CartCheck Out

Cloud Database Professional

CLOUD DATABASE PROFESSIONAL

Latest version:5.0.1 build 1224.December 24, 2025.

The Cloud Database Professional export module sends parsed data from our data loggers (for example, Advanced Serial Data Logger) to SQL-compatible cloud databases: Microsoft Azure, MySQL, PostgreSQL, MariaDB, MongoDB, Amazon Aurora, and Amazon Redshift. It uses vendor drivers for direct access. That reduces system overhead and network chatter. It also lets you use database-specific features such as stored procedures.

The module writes data in real time over secure connections. If the remote database is unavailable, the plugin can keep a local backup until the connection is restored. You can queue one or more custom SQL statements. The queue can contain SELECT, INSERT, UPDATE, stored procedure calls, or database-specific commands. Returned rows can be used in subsequent statements.

Download Documentation Buy Now!

KEY CAPABILITIES AND PRACTICAL EXAMPLES

  • The module preserves transaction flow and offers flexible connection modes.
  • Choose persistent connections for steady streams.
  • Choose connect per transaction to save network resources when data is sporadic.
  • Reconnection rules control how the module behaves on connection loss.
  • Error handling modes let you stop on error, show a message, ignore errors but log them, or attempt reconnects.
  • If desired, incoming data will be written to a temporary file when errors prevent immediate publishing. That prevents data loss.

Example: A factory sensor sends temperature readings every 10 seconds. The parser creates variablesTEMP and TS. A two-statement SQL queue first runs a SELECT to compute next_id, then an INSERT uses next_id, TEMP, and TS. If the database is offline at 2026-01-02 08:00:00, the plugin writes the record to the temporary file. When the database returns, it restores and publishes queued records in order.

INTEGRATION EXAMPLES WITH ADVANCED SERIAL DATA LOGGER

This example shows a common workflow: the logger receives raw data, a parser extracts variables, and the Cloud Database Professional plugin publishes them.

1. Advanced Serial Data Logger – incoming serial data:

ID=17;TEMP=72.4;HUM=38;TS=2026-01-02 08:00:00

2. Parser output variables:

ID=17 TEMP=72.4 HUM=38 TS=DATE_TIME_STAMP 

3. Export SQL queue (example):

SELECT (max(log_id)+1) AS next_id FROM readings INSERT INTO readings (log_id, device_id, temp, hum, ts) VALUES (:next_id, :ID, :TEMP, :HUM, ':TS') 

BRIEF SUMMARY

  • The plugin can connect to remote databases by IP or a host name. For example: database-1.cluster-copvutiaj8an.us-east-1.rds.amazonaws.com:mydb.
  • It supports several connection modes: stay connected, disconnect after each transaction, or disconnect when inactive.
  • Reconnection rules: try immediately or after N seconds.
  • Supports SSL-secured connections.
  • It can create a temporary file backup if you need guaranteed delivery on intermittent networks.

Download Documentation Buy Now!

HOW TO ENABLE THIS PLUGIN

The figure below shows how to select the plugin on the “Modules” page.

Selecting the Cloud Database Professional plugin

Fig.1. Selecting the plugin.

HOW TO CONFIGURE THE PLUGIN

The figure below shows how to configure the plugin. Please, look at the documentation for the full description of all settings.

Configuring data exporting to a cloud database

Fig.2. Configuring the plugin.