Skip to content

MsSQL Flux Asset

Introduction

Microsoft SQL Server is a powerful SQL database management system known for its robust architecture and comprehensive data management features. It is extensively utilized across various industries for its high performance, reliability, and scalability. Microsoft SQL Server serves as a dependable backend for a diverse range of applications, from straightforward web applications to intricate enterprise-level solutions.

MSSQLMQTT facilitates seamless integration between MsSQL and various MQTT-enabled devices and services. It supports efficient data transfer from MsSQL to an MQTT broker and vice versa. This asset enables users to leverage MQTT for interacting with the database, allowing for both data extraction and insertion via MQTT messages. This interaction model supports real-time data processing and enhances the capabilities of IoT applications by linking them directly with MsSQL.

Features and Benefits

  • Seamless Communication: Enables seamless communication between MsSQL databases and MQTT clients, streamlining the exchange of data across platforms.
  • Real-time Query Execution: Facilitates real-time querying of the MsSQL database through MQTT messages, enabling dynamic data retrieval and manipulation.
  • Easy Integration: Simplifies the integration of MsSQL with your IoT projects, making it straightforward to connect database services with various IoT devices.
  • Dynamic Query Capability: Allows users to execute SQL queries directly through MQTT, enhancing flexibility and responsiveness.

Prerequisites

Before you install and configure the asset, make sure you have the following prerequisites:

  • Basic understanding of the MQTT protocol.
  • Basic understanding of SQL and MsSQL operations.
  • Access to an MQTT broker compatible with your setup.
  • MQTT Client software (such as MQTT Explorer or similar).
  • Access to a MsSQL database instance.

Asset installation

Using Coreflux HUB

Please refere to general docs for asset installation trough the Coreflux HUB.

Using Coreflux HUBLESS

Asset management and control are conducted using the MQTT protocol. Commands (payload) are sent to the $SYS/Coreflux/Command topic. The results of these commands are published to $SYS/Coreflux/Command/Output. The following steps will focus solely on the payload that needs to be sent.

  1. Connect to the Coreflux MQTT Broker using your preferred client.
  2. Login using your coreflux account:
    -L myname@mydomain.com password`
    
  3. Check your available assets:
    -l
    
  4. Install asset:
    -I coreflux_mssqlmqtt
    
  5. If there were no issues during the installation you should receive a message on the $SYS/Coreflux/Command/Output:
    Your coreflux_mssqlmqtt was installed with version <version> with the <asset_guid>. Let the magic begin! 
    

Asset configuration

⚠ If a parameter is not included in your asset's configuration and it is not required, a default value will be applied. Incorrect configuration may cause the asset to not work as intended.

ℹ This configuration is presented using a hubless setup as an example. The key takeaway is the understanding of the parameters and their significance. If you are configuring the asset via Coreflux Hub, the same parameters and configurations apply.

MQTT Parameters

The MQTTClient in the JSON configuration define how to connect to an MQTT broker, specifying the communication details. The Address and Port indicate the broker's network location (in this case, 127.0.0.1 on port 1883), which is where the data will be sent to or received from. The parameters also detail authentication methods and the use of TLS for secure communication. This setup determines the pathway for data exchange between the device and the MQTT broker, facilitating the monitoring or control of device operations.

Parameter Description Required Example Default Value
Port Port number on which the MQTT broker is running. Yes 1883 1883
Address IP address or hostname of the MQTT broker. Yes "127.0.0.1" "127.0.0.1"
IsAnonymous Indicates if the connection is anonymous (no username/password required). Yes true true
Username Username for authentication, if not anonymous. No "" (empty string) "" (empty string)
Password Password for authentication, if not anonymous. No "" (empty string) "" (empty string)
EnableTLS Specifies whether TLS encryption is enabled for secure communication. Yes true false

Example:

{
  "MQTTClient": {
    "Port": 1883,
    "Address": "127.0.0.1",
    "IsAnonymous": true,
    "Username": "",
    "Password": "",
    "EnableTLS": false
  }
}

SQL Parameters

The SQL in the JSON configuration outline the setup for SQL communication between the asset and a MsSQL database. These parameters are essential for establishing a connection to the database, enabling the asset to execute queries and manage data effectively. They include specifying the server address, port, database name, and credentials for authentication. This configuration ensures the asset can interact with the database securely and efficiently. Additionally, the query timeout setting helps manage the performance of data interactions, preventing long waits in case of database response delays.

Parameter Description Required Example Default Value
ServerAddress IP address or hostname of the SQL server. Yes "127.0.0.1" N/A
ServerPort Port number on which the SQL server is running. Yes 3306 N/A
Databasename Name of the database to connect to. Yes "example-database" N/A
Username Username for authentication with the SQL server. Yes "user" N/A
Password Password for authentication with the SQL server. Yes "pass" N/A
QueryTimeoutInSeconds Maximum duration in seconds before a query is terminated if not done. No 10 N/A

Example:

{
  "MQTTClient": {
    "Port": 1883,
    "Address": "127.0.0.1",
    "IsAnonymous": true,
    "Username": "",
    "Password": "",
    "EnableTLS": false
  },
  "SQL": {
    "ServerAddress": "test.address",
    "ServerPort": 3306,
    "Databasename": "example-database",
    "Username": "user",
    "Password": "pass",
    "QueryTimeoutInSeconds": "10"
    }
}

Tags

Tags are crucial components that facilitate both querying from and writing to your MsSQL database via MQTT interactions. Each Tag establishes a direct link between a database operation and an MQTT topic, enabling not only the execution of SQL queries but also the transmission of responses back to MQTT clients. These tags configure the specifics of the SQL operations and the MQTT communication, including the SQL query to execute, the MQTT topics for initiating requests and receiving responses, and the data formatting preferences.

Parameter Description Required Example Default Value
Name A unique identifier for the tag, up to 50 characters. Used to reference the tag within the system. Yes "TemperatureData" N/A
WriteDirection Direction of data flow (ToAll, ToMQTT, ToSQL), indicating how data is communicated. Yes "ToMQTT" N/A
mqttTriggerTopic MQTT topic for triggering the query associated with the Tag. Yes "request/temperature" N/A
mqttFeedbackTopic MQTT topic for publishing the results of the query. Yes "response/temperature" N/A
mqttFeedbackQos Quality of Service level for MQTT communications (0 to 2), balancing efficiency and reliability. Yes 1 0 (At most once)
mqttFeedbackRetain Indicates if the last message published to the MQTT topic should be retained by the broker. Yes true false
Query The SQL query to be executed when this Tag is triggered. Yes "SELECT temperature FROM data" N/A
OutputType The format of the output data (Raw, Csv, Json), affecting how the results are formatted. Yes "Json" N/A

Example:

{
  "MQTTParameters": {
    "Port": 1883,
    "Address": "127.0.0.1",
    "IsAnonymous": true,
    "Username": "",
    "Password": "",
    "EnableTLS": false
  },
  "SQL": {
    "ServerAddress": "test.address",
    "ServerPort": 3306,
    "Databasename": "example-database",
    "Username": "user",
    "Password": "pass",
    "QueryTimeoutInSeconds": "10"
    },
  "Tags": [
    {
      "Name": "TemperatureData",
      "WriteDirection": "ToMQTT",
      "mqttTriggerTopic": "request/temperature",
      "mqttFeedbackTopic": "response/temperature",
      "mqttFeedbackQos": 1,
      "mqttFeedbackRetain": true,
      "Query": "SELECT temperature FROM data",
      "OutputType": "Json"
    },
    {
      "Name": "TemperatureData2",
      "WriteDirection": "ToMQTT",
      "mqttTriggerTopic": "request/temperature2",
      "mqttFeedbackTopic": "response/temperature2",
      "mqttFeedbackQos": 1,
      "mqttFeedbackRetain": true,
      "Query": "SELECT temperature FROM data2",
      "OutputType": "Json"
    }
  ]
}

Saving the configuration

Asset management and control are conducted using the MQTT protocol. Commands (MQTT payload) are sent to the $SYS/Coreflux/Command topic. The results of these commands are published to $SYS/Coreflux/Command/Output. The following steps will focus solely on the payload that needs to be sent.

ℹ Configuration requires the user to be logged in and have an asset installed. If these requirements are not met, please refer to the installation section.

  1. Save configuration:
    -assetConfigSave <asset_guid> <configuration>`
    

    ℹ The asset asset_guid can be obtained by consulting the $SYS/Coreflux/Assets topic.

Example:

{"MQTTParameters":{"Port":1883,"Address":"127.0.0.1","IsAnonymous":true,"Username":"","Password":"","EnableTLS":false},"SQL":{"ServerAddress":"test.address","ServerPort":3306,"Databasename":"example-database","Username":"user","Password":"pass","QueryTimeoutInSeconds":"10"},"Tags":[{"Name":"TemperatureData","WriteDirection":"ToMQTT","mqttTriggerTopic":"request/temperature","mqttFeedbackTopic":"response/temperature","mqttFeedbackQos":1,"mqttFeedbackRetain":true,"Query":"SELECT temperature FROM data","OutputType":"Json"},{"Name":"TemperatureData2","WriteDirection":"ToMQTT","mqttTriggerTopic":"request/temperature2","mqttFeedbackTopic":"response/temperature2","mqttFeedbackQos":1,"mqttFeedbackRetain":true,"Query":"SELECT temperature FROM data2","OutputType":"Json"}]}
  1. Check if the configuration was saved (optional) :
    -assetConfigLoad <asset_guid>
    

Using the asset

⚠ It is important to understand that the flow of data between the broker and the device highly depends on the configuration of both the asset and the device. In case of unexpected results, please verify the configuration and/or check the logs for any possible errors.

With Coreflux HUB

Please refere to general docs for asser installation trough the Coreflux HUB.

With Coreflux HUBLESS

Asset management and control are conducted using the MQTT protocol. Commands (MQTT payload) are sent to the $SYS/Coreflux/Command topic. The results of these commands are published to $SYS/Coreflux/Command/Output. The following steps will focus solely on the payload that needs to be sent.

ℹ The asset guid can be obtained by consulting the $SYS/Coreflux/Assets topic.

Run asset

  1. Run asset:
-R <asset_guid>

Stop asset

  1. Stop asset:
-S <asset_guid>