[{"data":1,"prerenderedAt":6640},["ShallowReactive",2],{"docs-\u002Fdocs\u002Fnode-red\u002Fdatabase\u002Fmysql\u002F":3,"featureCatalog":5187,"docs-nav":5592},{"id":4,"title":5,"body":6,"description":16,"editUrl":5175,"extension":5176,"layout":5177,"meta":5178,"metaTitle":5,"navGroup":5177,"navGroupOrder":5177,"navOrder":5180,"navTitle":30,"navigation":5181,"originalPath":5177,"path":5182,"redirect":5177,"seo":5183,"stem":5184,"updated":5185,"version":5177,"__hash__":5186},"docs\u002Fdocs\u002Fnode-red\u002Fdatabase\u002Fmysql.md","Using MySQL with Node-RED (2026 Updated)",{"type":7,"value":8,"toc":5159},"minimark",[9,13,17,22,32,36,150,154,161,164,167,171,174,177,182,185,206,210,228,236,239,243,258,311,316,322,326,344,396,404,408,420,450,453,500,507,511,536,576,582,586,594,629,635,639,646,666,672,675,5135,5139,5144,5147,5155],[10,11,5],"h1",{"id":12},"using-mysql-with-node-red-2026-updated",[14,15,16],"p",{},"When discussing popular and widely used databases, MySQL inevitably stands out. This is especially evident within the Node-RED community, where the MySQL contrib node has the highest number of downloads among all database contrib nodes. However, popularity often brings its own set of challenges. We've prepared this comprehensive guide to help our Node-RED community members navigate these challenges. It covers all aspects of using MySQL with Node-RED, including an overview of what MySQL is, the differences between PostgreSQL and MySQL, when to choose one over the other, essential MySQL operations, and more.",[18,19,21],"h2",{"id":20},"what-is-mysql","What is MySQL",[14,23,24,31],{},[25,26,30],"a",{"href":27,"rel":28},"https:\u002F\u002Fdev.mysql.com\u002Fdoc\u002F",[29],"nofollow","MySQL"," is an open-source relational database management system (RDBMS) developed by MySQL AB, which Sun Microsystems later acquired and then Oracle Corporation. It uses SQL (Structured Query Language) to query and manage databases. MySQL is widely recognized for its performance, scalability, and ease of use.",[18,33,35],{"id":34},"mysql-vs-postgresql","MySQL vs PostgreSQL",[37,38,39,54],"table",{},[40,41,42],"thead",{},[43,44,45,49,52],"tr",{},[46,47,48],"th",{},"Feature",[46,50,51],{},"PostgreSQL",[46,53,30],{},[55,56,57,72,85,98,111,124,137],"tbody",{},[43,58,59,66,69],{},[60,61,62],"td",{},[63,64,65],"strong",{},"ACID Compliance",[60,67,68],{},"Ensures all changes to data are reliable and consistent, even during unexpected events like system crashes.",[60,70,71],{},"Ensures data integrity but requires InnoDB or NDB Cluster for full ACID compliance.",[43,73,74,79,82],{},[60,75,76],{},[63,77,78],{},"Concurrency Control",[60,80,81],{},"Handles multiple users updating data simultaneously without conflicting changes, using MVCC to manage versions of data.",[60,83,84],{},"Manages simultaneous data access differently across storage engines like InnoDB and MyISAM.",[43,86,87,92,95],{},[60,88,89],{},[63,90,91],{},"Indexes",[60,93,94],{},"Structures data for quick retrieval; supports various index types like B-tree and hash for efficient queries.",[60,96,97],{},"Uses B-tree and R-tree indexes, suitable for different data structures and retrieval needs.",[43,99,100,105,108],{},[60,101,102],{},[63,103,104],{},"Data Types",[60,106,107],{},"Supports complex data types like arrays and JSON, useful for applications needing flexible data handling.",[60,109,110],{},"Focuses on traditional relational data types (e.g., integers, strings) with less support for complex data structures.",[43,112,113,118,121],{},[60,114,115],{},[63,116,117],{},"Views",[60,119,120],{},"Materialized views store query results, improving performance for complex queries that require frequent data summarization.",[60,122,123],{},"Standard views are available for simplifying query execution but lack advanced performance optimization.",[43,125,126,131,134],{},[60,127,128],{},[63,129,130],{},"Stored Procedures",[60,132,133],{},"Allows defining custom functions in multiple programming languages, enhancing database functionality beyond SQL queries.",[60,135,136],{},"Supports SQL-based procedures for automating tasks like data validation and complex logic execution.",[43,138,139,144,147],{},[60,140,141],{},[63,142,143],{},"Triggers",[60,145,146],{},"Triggers execute actions automatically when specific events occur (e.g., before or after data insertion or updates), enhancing database automation.",[60,148,149],{},"Offers triggers to automate tasks based on events, though functionality varies by storage engine and configuration.",[18,151,153],{"id":152},"choosing-between-postgresql-and-mysql","Choosing Between PostgreSQL and MySQL",[14,155,156,157,160],{},"Deciding between ",[25,158,51],{"href":159},"\u002Fdocs\u002Fnode-red\u002Fdatabase\u002Fpostgresql\u002F"," and MySQL depends on your project's needs and what each database system does best. PostgreSQL is ideal for big projects requiring complex data handling, reliability, and often updated data. It works well in environments where keeping data consistent is crucial. PostgreSQL's advanced features, like materialized views and support for writing procedures in different languages beyond SQL make it great for managing sophisticated data needs.",[14,162,163],{},"On the other hand, MySQL is excellent for projects that prioritize fast data reading and are easy to set up and use. It's commonly used for smaller projects, quick prototypes, or applications where quick deployment is critical. MySQL offers flexibility with different storage options, like InnoDB for transactions and MyISAM for handling lots of reads simultaneously, making it versatile depending on your workload.",[14,165,166],{},"Knowing what performance your project needs, how familiar your team is with each database, and how much your project might grow will help you pick the database that's best for you.",[18,168,170],{"id":169},"using-mysql-with-node-red","Using MySQL with Node-RED",[14,172,173],{},"This section of the article will cover how to configure MySQL with Node-RED, create and delete tables, and perform essential operations such as inserting, retrieving, updating, and deleting data. These operations are crucial for any application.",[14,175,176],{},"Additionally, for the demonstration purpose, the article uses a simple weather data example, so make sure you update the SQL queries according to your data and application needs. Also, through the article, we have used the inject nodes for ease to set the example data and trigger, but instead, you could utilize the Node-RED Dashboard 2.0 to grab the data from the user and trigger it.",[178,179,181],"h3",{"id":180},"prerequisite","Prerequisite",[14,183,184],{},"Before proceeding further, ensure the following:",[186,187,188,197],"ul",{},[189,190,191,192,196],"li",{},"A running MySQL database instance, whether hosted in the cloud or locally, along with connection details, should be ready, and environment variables for those connection details should be added. For more information on how to add environment variables, refer to ",[25,193,195],{"href":194},"\u002Fblog\u002F2023\u002F01\u002Fenvironment-variables-in-node-red\u002F","Using Environment Variables in Node-RED",".",[189,198,199,200,205],{},"The MySQL custom node ",[25,201,204],{"href":202,"rel":203},"https:\u002F\u002Fflows.nodered.org\u002Fnode\u002Fnode-red-node-mysql",[29],"node-red-contrib-mysql"," is installed in your Node-RED environment.",[178,207,209],{"id":208},"configuring-mysql-custom-node","Configuring MySQL Custom Node",[211,212,213,216,219,222,225],"ol",{},[189,214,215],{},"Drag the MySQL node onto the canvas.",[189,217,218],{},"Double-click on it, then Click on the \"+\" button located next to the \"Database\" field.",[189,220,221],{},"Enter the Environment variables added for Host, Port, User, Password, and Database into their corresponding fields.",[189,223,224],{},"Keep the Charset to default as it is set to \"UTF8\" which is widely compatible and supports various languages and characters.",[189,226,227],{},"Click on \"Add\" to save the configuration.",[14,229,230],{},[231,232],"img",{"alt":233,"src":234,"title":235},"\"Screenshot of MySQL node property dialog with the environment variables added\"","\u002Fdocs\u002Fnode-red\u002Fdatabase\u002Fimages\u002Fmysql-node-config.png","Screenshot of MySQL node property dialog with the environment variables added",[14,237,238],{},"To check whether your configuration is correct and Node-RED can connect, deploy the flow by clicking on the top-right \"Deploy\" button. If the connection is successful, each MySQL node will show a green dot with \"connected\" text underneath.",[178,240,242],{"id":241},"creating-table-in-mysql-database","Creating Table in MySQL Database",[211,244,245,248,255],{},[189,246,247],{},"Drag an Inject node on the canvas.",[189,249,250,251,196],{},"Drag a Template node onto the canvas and set its property to ",[252,253,254],"code",{},"msg.topic",[189,256,257],{},"Insert the following SQL into the Template node:",[259,260,265],"pre",{"className":261,"code":262,"language":263,"meta":264,"style":264},"language-sql shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","-- Create a table to store weather data if it doesn't already exist\nCREATE TABLE IF NOT EXISTS weather_data (\n    id INT AUTO_INCREMENT PRIMARY KEY,     -- Primary key with auto-increment\n    location VARCHAR(100) NOT NULL,        -- Location name, cannot be null\n    date DATETIME NOT NULL,                -- Date and time of the recorded data, cannot be null\n    tem DECIMAL(5, 2) NOT NULL             -- Temperature with precision 5, scale 2, cannot be null\n);\n","sql","",[252,266,267,275,281,287,293,299,305],{"__ignoreMap":264},[268,269,272],"span",{"class":270,"line":271},"line",1,[268,273,274],{},"-- Create a table to store weather data if it doesn't already exist\n",[268,276,278],{"class":270,"line":277},2,[268,279,280],{},"CREATE TABLE IF NOT EXISTS weather_data (\n",[268,282,284],{"class":270,"line":283},3,[268,285,286],{},"    id INT AUTO_INCREMENT PRIMARY KEY,     -- Primary key with auto-increment\n",[268,288,290],{"class":270,"line":289},4,[268,291,292],{},"    location VARCHAR(100) NOT NULL,        -- Location name, cannot be null\n",[268,294,296],{"class":270,"line":295},5,[268,297,298],{},"    date DATETIME NOT NULL,                -- Date and time of the recorded data, cannot be null\n",[268,300,302],{"class":270,"line":301},6,[268,303,304],{},"    tem DECIMAL(5, 2) NOT NULL             -- Temperature with precision 5, scale 2, cannot be null\n",[268,306,308],{"class":270,"line":307},7,[268,309,310],{},");\n",[211,312,313],{"start":283},[189,314,315],{},"Connect the output of the Inject node to the input of the Template node and the output of the Template node to the input of the MySQL node.",[14,317,318,319,321],{},"The MySQL node allows sending queries through the ",[252,320,254],{}," property. We use the Template node because it enables us to use Mustache syntax, which is useful for setting things dynamically. This flexibility is not crucial when creating or deleting tables but is essential for operations like inserts.",[178,323,325],{"id":324},"inserting-data-in-the-mysql-database-table","Inserting Data in the MySQL Database Table",[211,327,328,335],{},[189,329,330,331,334],{},"Drag an Inject node onto the canvas, and set ",[252,332,333],{},"msg.payload"," to the data you want to insert.",[189,336,337,338,340,341,343],{},"Drag a Template node onto the canvas. Insert the following SQL into it. Note how the Template node dynamically inserts the value of ",[252,339,333],{}," into the query. If you want to set the date and time using Node-RED, you can similarly set it up as you did for ",[252,342,333],{},", currently, we are using the MySQL function for setting time.",[259,345,347],{"className":261,"code":346,"language":263,"meta":264,"style":264},"-- Insert a record into the weather_data table\nINSERT INTO weather_data (location, date, tem)\nVALUES \n-- Insert the location as 'New York'\n('New York', \n-- Insert the current time as the date\nCURTIME(), \n-- Insert the temperature value from the payload\n{{payload}});\n",[252,348,349,354,359,364,369,374,379,384,390],{"__ignoreMap":264},[268,350,351],{"class":270,"line":271},[268,352,353],{},"-- Insert a record into the weather_data table\n",[268,355,356],{"class":270,"line":277},[268,357,358],{},"INSERT INTO weather_data (location, date, tem)\n",[268,360,361],{"class":270,"line":283},[268,362,363],{},"VALUES \n",[268,365,366],{"class":270,"line":289},[268,367,368],{},"-- Insert the location as 'New York'\n",[268,370,371],{"class":270,"line":295},[268,372,373],{},"('New York', \n",[268,375,376],{"class":270,"line":301},[268,377,378],{},"-- Insert the current time as the date\n",[268,380,381],{"class":270,"line":307},[268,382,383],{},"CURTIME(), \n",[268,385,387],{"class":270,"line":386},8,[268,388,389],{},"-- Insert the temperature value from the payload\n",[268,391,393],{"class":270,"line":392},9,[268,394,395],{},"{{payload}});\n",[211,397,398,401],{"start":283},[189,399,400],{},"Drag another MySQL node onto the canvas, and ensure that it is using the correct configuration by double-clicking on it. While you can use a single MySQL node for all operations, However separating and organizing nodes can aid in better management, understanding, and debugging if issues occur.",[189,402,403],{},"Connect the output of the Inject node to the input of the Template node, and connect the output of the Template node to the input of the MySQL node.",[178,405,407],{"id":406},"retrieving-data-from-the-mysql-database-table","Retrieving Data from the MySQL Database Table",[211,409,410,413],{},[189,411,412],{},"Drag an Inject node onto the canvas. This node will trigger the retrieval process.",[189,414,415,416,419],{},"Drag a Template node onto the canvas. Insert the following SQL query into it to retrieve all records from the ",[252,417,418],{},"weather_data"," table.",[259,421,423],{"className":261,"code":422,"language":263,"meta":264,"style":264},"   -- Retrieve all records from the weather_data table\nSELECT * \n    -- Select all columns from the table\nFROM weather_data;\n    -- Specify the table from which to retrieve the records\n",[252,424,425,430,435,440,445],{"__ignoreMap":264},[268,426,427],{"class":270,"line":271},[268,428,429],{},"   -- Retrieve all records from the weather_data table\n",[268,431,432],{"class":270,"line":277},[268,433,434],{},"SELECT * \n",[268,436,437],{"class":270,"line":283},[268,438,439],{},"    -- Select all columns from the table\n",[268,441,442],{"class":270,"line":289},[268,443,444],{},"FROM weather_data;\n",[268,446,447],{"class":270,"line":295},[268,448,449],{},"    -- Specify the table from which to retrieve the records\n",[14,451,452],{},"You can modify the query as needed to filter or sort the data. An example SQL query is provided to demonstrate this",[259,454,456],{"className":261,"code":455,"language":263,"meta":264,"style":264},"   -- Retrieve records where the temperature is greater than 25 and sort by date in descending order\nSELECT * \n    -- Select all columns from the table\nFROM weather_data\n    -- Specify the table from which to retrieve the records\nWHERE tem > 25\n    -- Filter records to include only those where the temperature is greater than 25\nORDER BY date DESC;\n    -- Sort the results by date in descending order (most recent first)\n",[252,457,458,463,467,471,476,480,485,490,495],{"__ignoreMap":264},[268,459,460],{"class":270,"line":271},[268,461,462],{},"   -- Retrieve records where the temperature is greater than 25 and sort by date in descending order\n",[268,464,465],{"class":270,"line":277},[268,466,434],{},[268,468,469],{"class":270,"line":283},[268,470,439],{},[268,472,473],{"class":270,"line":289},[268,474,475],{},"FROM weather_data\n",[268,477,478],{"class":270,"line":295},[268,479,449],{},[268,481,482],{"class":270,"line":301},[268,483,484],{},"WHERE tem > 25\n",[268,486,487],{"class":270,"line":307},[268,488,489],{},"    -- Filter records to include only those where the temperature is greater than 25\n",[268,491,492],{"class":270,"line":386},[268,493,494],{},"ORDER BY date DESC;\n",[268,496,497],{"class":270,"line":392},[268,498,499],{},"    -- Sort the results by date in descending order (most recent first)\n",[211,501,502,505],{"start":289},[189,503,504],{},"Drag a MySQL node onto the canvas.",[189,506,403],{},[178,508,510],{"id":509},"updating-data-of-the-mysql-database-table","Updating Data of the MySQL Database Table",[211,512,513,516],{},[189,514,515],{},"Drag an Inject node onto the canvas and set the message.payload to the data you want to update",[189,517,518,519,522,523,526,527,530,531,535],{},"Drag a Template node onto the canvas. Insert the following SQL into it. In this SQL query, we are setting the ",[252,520,521],{},"id"," statically, which we are using to update the data, but you can also dynamically set it just like we did for ",[252,524,525],{},"tem",". We have utilized the ",[252,528,529],{},"WHERE"," clause here, but there are plenty of other SQL clauses available for more complex operations. For more information, refer to this blog on [SQL Clauses (",[25,532,533],{"href":533,"rel":534},"https:\u002F\u002Fwww.educba.com\u002Fsql-clauses\u002F",[29],")",[259,537,539],{"className":261,"code":538,"language":263,"meta":264,"style":264},"-- Update the temperature for a specific record in the weather_data table\nUPDATE weather_data\n    -- Specify the table to update\nSET tem = {{payload}}\n    -- Set the temperature value to the value from the payload\nWHERE id = 3;\n    -- Update only the record where the id is 3\n",[252,540,541,546,551,556,561,566,571],{"__ignoreMap":264},[268,542,543],{"class":270,"line":271},[268,544,545],{},"-- Update the temperature for a specific record in the weather_data table\n",[268,547,548],{"class":270,"line":277},[268,549,550],{},"UPDATE weather_data\n",[268,552,553],{"class":270,"line":283},[268,554,555],{},"    -- Specify the table to update\n",[268,557,558],{"class":270,"line":289},[268,559,560],{},"SET tem = {{payload}}\n",[268,562,563],{"class":270,"line":295},[268,564,565],{},"    -- Set the temperature value to the value from the payload\n",[268,567,568],{"class":270,"line":301},[268,569,570],{},"WHERE id = 3;\n",[268,572,573],{"class":270,"line":307},[268,574,575],{},"    -- Update only the record where the id is 3\n",[211,577,578,580],{"start":283},[189,579,504],{},[189,581,403],{},[178,583,585],{"id":584},"deleting-data-from-the-mysql-database-table","Deleting Data from the MySQL Database Table",[211,587,588,591],{},[189,589,590],{},"Drag an Inject node onto the canvas.",[189,592,593],{},"Drag a Template node onto the canvas.",[259,595,597],{"className":261,"code":596,"language":263,"meta":264,"style":264},"DELETE FROM weather_data\n    -- Specify the table from which to delete records\nWHERE tem \u003C 15\n    -- Filter records to include only those where the temperature is less than 15\nAND location = 'New York';\n    -- Further filter records to include only those where the location is New York\n",[252,598,599,604,609,614,619,624],{"__ignoreMap":264},[268,600,601],{"class":270,"line":271},[268,602,603],{},"DELETE FROM weather_data\n",[268,605,606],{"class":270,"line":277},[268,607,608],{},"    -- Specify the table from which to delete records\n",[268,610,611],{"class":270,"line":283},[268,612,613],{},"WHERE tem \u003C 15\n",[268,615,616],{"class":270,"line":289},[268,617,618],{},"    -- Filter records to include only those where the temperature is less than 15\n",[268,620,621],{"class":270,"line":295},[268,622,623],{},"AND location = 'New York';\n",[268,625,626],{"class":270,"line":301},[268,627,628],{},"    -- Further filter records to include only those where the location is New York\n",[211,630,631,633],{"start":283},[189,632,504],{},[189,634,403],{},[178,636,638],{"id":637},"deleting-mysql-database-table","Deleting MySQL Database Table",[211,640,641,643],{},[189,642,590],{},[189,644,645],{},"Drag a Template node onto the canvas. Insert the following SQL into it:",[259,647,649],{"className":261,"code":648,"language":263,"meta":264,"style":264},"  -- Drop the weather_data table if it exists\nDROP TABLE IF EXISTS weather_data;\n    -- Remove the table named weather_data from the database if it already exists\n",[252,650,651,656,661],{"__ignoreMap":264},[268,652,653],{"class":270,"line":271},[268,654,655],{},"  -- Drop the weather_data table if it exists\n",[268,657,658],{"class":270,"line":277},[268,659,660],{},"DROP TABLE IF EXISTS weather_data;\n",[268,662,663],{"class":270,"line":283},[268,664,665],{},"    -- Remove the table named weather_data from the database if it already exists\n",[211,667,668,670],{"start":283},[189,669,504],{},[189,671,403],{},[14,673,674],{},"Below is the complete flow covering all the operations discussed throughout this blog.",[676,677,678],"render-flow",{},[259,679,683],{"className":680,"code":681,"language":682,"meta":264,"style":264},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","[{\"id\":\"01aeec8769243693\",\"type\":\"mysql\",\"z\":\"a9e5683585deb91e\",\"mydb\":\"bceed1e54606b872\",\"name\":\"MySQL\",\"x\":980,\"y\":1660,\"wires\":[[\"e9ae7f0a3fdbfbc5\"]]},{\"id\":\"e9ae7f0a3fdbfbc5\",\"type\":\"debug\",\"z\":\"a9e5683585deb91e\",\"name\":\"debug 1\",\"active\":true,\"tosidebar\":true,\"console\":false,\"tostatus\":false,\"complete\":\"true\",\"targetType\":\"full\",\"statusVal\":\"\",\"statusType\":\"auto\",\"x\":1160,\"y\":1660,\"wires\":[]},{\"id\":\"faf229c38d675b2b\",\"type\":\"inject\",\"z\":\"a9e5683585deb91e\",\"name\":\"Create the table\",\"props\":[],\"repeat\":\"\",\"crontab\":\"\",\"once\":false,\"onceDelay\":\"\",\"topic\":\"\",\"x\":600,\"y\":1660,\"wires\":[[\"b407dbb1901749bf\"]]},{\"id\":\"b407dbb1901749bf\",\"type\":\"template\",\"z\":\"a9e5683585deb91e\",\"name\":\"\",\"field\":\"topic\",\"fieldType\":\"msg\",\"format\":\"handlebars\",\"syntax\":\"mustache\",\"template\":\"CREATE TABLE IF NOT EXISTS weather_data (\\n id INT AUTO_INCREMENT PRIMARY KEY,\\n location VARCHAR(100) NOT NULL,\\n date DATETIME NOT NULL,\\n tem DECIMAL(5, 2) NOT NULL\\n);\\n\",\"output\":\"str\",\"x\":820,\"y\":1660,\"wires\":[[\"01aeec8769243693\"]]},{\"id\":\"cfc26503f0812a88\",\"type\":\"mysql\",\"z\":\"a9e5683585deb91e\",\"mydb\":\"bceed1e54606b872\",\"name\":\"MySQL\",\"x\":980,\"y\":1760,\"wires\":[[\"236d40b1edb920d2\"]]},{\"id\":\"236d40b1edb920d2\",\"type\":\"debug\",\"z\":\"a9e5683585deb91e\",\"name\":\"debug 2\",\"active\":true,\"tosidebar\":true,\"console\":false,\"tostatus\":false,\"complete\":\"true\",\"targetType\":\"full\",\"statusVal\":\"\",\"statusType\":\"auto\",\"x\":1160,\"y\":1760,\"wires\":[]},{\"id\":\"25790e7a3aef22bf\",\"type\":\"inject\",\"z\":\"a9e5683585deb91e\",\"name\":\"Insert the data into the table\",\"props\":[{\"p\":\"payload\"}],\"repeat\":\"\",\"crontab\":\"\",\"once\":false,\"onceDelay\":\"\",\"topic\":\"\",\"payload\":\"$random() * 100\",\"payloadType\":\"jsonata\",\"x\":560,\"y\":1760,\"wires\":[[\"7a798b3539da9547\"]]},{\"id\":\"7a798b3539da9547\",\"type\":\"template\",\"z\":\"a9e5683585deb91e\",\"name\":\"\",\"field\":\"topic\",\"fieldType\":\"msg\",\"format\":\"handlebars\",\"syntax\":\"mustache\",\"template\":\"INSERT INTO weather_data (location, date, tem)\\nVALUES ('New York', CURTIME(), {{ payload }});\",\"output\":\"str\",\"x\":820,\"y\":1760,\"wires\":[[\"cfc26503f0812a88\"]]},{\"id\":\"0bbb4d17defe3067\",\"type\":\"mysql\",\"z\":\"a9e5683585deb91e\",\"mydb\":\"bceed1e54606b872\",\"name\":\"MySQL\",\"x\":980,\"y\":1860,\"wires\":[[\"ef2de8cb0673de47\"]]},{\"id\":\"ef2de8cb0673de47\",\"type\":\"debug\",\"z\":\"a9e5683585deb91e\",\"name\":\"debug 3\",\"active\":true,\"tosidebar\":true,\"console\":false,\"tostatus\":false,\"complete\":\"true\",\"targetType\":\"full\",\"statusVal\":\"\",\"statusType\":\"auto\",\"x\":1180,\"y\":1860,\"wires\":[]},{\"id\":\"027c2c3801bf71a3\",\"type\":\"inject\",\"z\":\"a9e5683585deb91e\",\"name\":\"Retrieve data from table\",\"props\":[],\"repeat\":\"\",\"crontab\":\"\",\"once\":false,\"onceDelay\":\"\",\"topic\":\"\",\"x\":580,\"y\":1860,\"wires\":[[\"079031046156b6a0\"]]},{\"id\":\"079031046156b6a0\",\"type\":\"template\",\"z\":\"a9e5683585deb91e\",\"name\":\"\",\"field\":\"topic\",\"fieldType\":\"msg\",\"format\":\"handlebars\",\"syntax\":\"mustache\",\"template\":\"SELECT * FROM weather_data;\\n\",\"output\":\"str\",\"x\":820,\"y\":1860,\"wires\":[[\"0bbb4d17defe3067\"]]},{\"id\":\"eb38532de73213cf\",\"type\":\"mysql\",\"z\":\"a9e5683585deb91e\",\"mydb\":\"bceed1e54606b872\",\"name\":\"MySQL\",\"x\":980,\"y\":2080,\"wires\":[[\"281838d687cea172\"]]},{\"id\":\"281838d687cea172\",\"type\":\"debug\",\"z\":\"a9e5683585deb91e\",\"name\":\"debug 4\",\"active\":true,\"tosidebar\":true,\"console\":false,\"tostatus\":false,\"complete\":\"true\",\"targetType\":\"full\",\"statusVal\":\"\",\"statusType\":\"auto\",\"x\":1180,\"y\":2080,\"wires\":[]},{\"id\":\"d4dfbbac635e8a3f\",\"type\":\"inject\",\"z\":\"a9e5683585deb91e\",\"name\":\"Drop the table if it exist\",\"props\":[],\"repeat\":\"\",\"crontab\":\"\",\"once\":false,\"onceDelay\":\"\",\"topic\":\"\",\"x\":580,\"y\":2080,\"wires\":[[\"4442ad0bbc50a256\"]]},{\"id\":\"4442ad0bbc50a256\",\"type\":\"template\",\"z\":\"a9e5683585deb91e\",\"name\":\"\",\"field\":\"topic\",\"fieldType\":\"msg\",\"format\":\"handlebars\",\"syntax\":\"mustache\",\"template\":\"DROP TABLE IF EXISTS weather_data;\\n\",\"output\":\"str\",\"x\":820,\"y\":2080,\"wires\":[[\"eb38532de73213cf\"]]},{\"id\":\"668ed2021704c543\",\"type\":\"mysql\",\"z\":\"a9e5683585deb91e\",\"mydb\":\"bceed1e54606b872\",\"name\":\"MySQL\",\"x\":980,\"y\":1940,\"wires\":[[\"666152e3362a25d5\"]]},{\"id\":\"666152e3362a25d5\",\"type\":\"debug\",\"z\":\"a9e5683585deb91e\",\"name\":\"debug 5\",\"active\":true,\"tosidebar\":true,\"console\":false,\"tostatus\":false,\"complete\":\"true\",\"targetType\":\"full\",\"statusVal\":\"\",\"statusType\":\"auto\",\"x\":1180,\"y\":1940,\"wires\":[]},{\"id\":\"fbcbad8039d05e8e\",\"type\":\"inject\",\"z\":\"a9e5683585deb91e\",\"name\":\"Delete data from the table\",\"props\":[],\"repeat\":\"\",\"crontab\":\"\",\"once\":false,\"onceDelay\":\"\",\"topic\":\"\",\"x\":570,\"y\":1940,\"wires\":[[\"aa929706ed813892\"]]},{\"id\":\"aa929706ed813892\",\"type\":\"template\",\"z\":\"a9e5683585deb91e\",\"name\":\"\",\"field\":\"topic\",\"fieldType\":\"msg\",\"format\":\"handlebars\",\"syntax\":\"mustache\",\"template\":\"DELETE FROM weather_data\\nWHERE tem > 15\\nAND location = 'New York';\",\"output\":\"str\",\"x\":820,\"y\":1940,\"wires\":[[\"668ed2021704c543\"]]},{\"id\":\"9c2befca464db660\",\"type\":\"mysql\",\"z\":\"a9e5683585deb91e\",\"mydb\":\"bceed1e54606b872\",\"name\":\"MySQL\",\"x\":980,\"y\":2020,\"wires\":[[\"d28cb3472c5fc357\"]]},{\"id\":\"d28cb3472c5fc357\",\"type\":\"debug\",\"z\":\"a9e5683585deb91e\",\"name\":\"debug 6\",\"active\":true,\"tosidebar\":true,\"console\":false,\"tostatus\":false,\"complete\":\"true\",\"targetType\":\"full\",\"statusVal\":\"\",\"statusType\":\"auto\",\"x\":1180,\"y\":2020,\"wires\":[]},{\"id\":\"49297922b9784f8e\",\"type\":\"inject\",\"z\":\"a9e5683585deb91e\",\"name\":\"Update data from the table\",\"props\":[{\"p\":\"payload\"}],\"repeat\":\"\",\"crontab\":\"\",\"once\":false,\"onceDelay\":\"\",\"topic\":\"\",\"payload\":\"10\",\"payloadType\":\"num\",\"x\":570,\"y\":2020,\"wires\":[[\"bbae98e54824b222\"]]},{\"id\":\"bbae98e54824b222\",\"type\":\"template\",\"z\":\"a9e5683585deb91e\",\"name\":\"\",\"field\":\"topic\",\"fieldType\":\"msg\",\"format\":\"handlebars\",\"syntax\":\"mustache\",\"template\":\"UPDATE weather_data\\nSET tem = {{payload}}\\nWHERE id = 3\",\"output\":\"str\",\"x\":820,\"y\":2020,\"wires\":[[\"9c2befca464db660\"]]},{\"id\":\"bceed1e54606b872\",\"type\":\"MySQLdatabase\",\"name\":\"Mysql config\",\"host\":\"${HOST}\",\"port\":\"${PORT}\",\"db\":\"${DATABASE}\",\"tz\":\"+5:30\",\"charset\":\"UTF8\"}]\n","json",[252,684,685],{"__ignoreMap":264},[268,686,687,691,694,697,699,702,704,708,710,713,715,718,720,722,724,727,729,731,733,736,738,740,742,745,747,749,751,754,756,758,760,763,765,767,769,772,774,776,778,780,782,784,786,789,791,793,797,799,801,804,806,808,811,813,815,818,820,823,825,828,830,833,835,837,839,841,843,845,847,849,851,853,855,857,859,862,864,866,868,870,872,874,876,878,880,882,884,886,888,890,892,895,897,899,901,904,906,909,911,914,916,918,920,923,925,928,930,933,935,937,939,942,944,946,948,951,953,955,957,960,962,964,966,969,971,973,975,978,980,982,985,987,989,992,994,996,998,1001,1003,1005,1007,1009,1011,1013,1016,1018,1020,1022,1024,1026,1028,1030,1032,1034,1036,1039,1041,1043,1045,1047,1049,1052,1054,1056,1058,1060,1062,1064,1066,1069,1071,1073,1075,1077,1079,1081,1083,1085,1087,1089,1091,1093,1095,1097,1099,1102,1104,1106,1108,1111,1113,1116,1118,1121,1123,1125,1127,1129,1131,1134,1136,1138,1140,1142,1144,1147,1149,1151,1153,1156,1158,1160,1162,1164,1166,1169,1171,1173,1175,1177,1179,1181,1183,1185,1188,1190,1192,1194,1196,1198,1200,1202,1204,1206,1208,1210,1212,1215,1217,1219,1221,1223,1225,1227,1229,1231,1233,1235,1237,1239,1241,1243,1245,1248,1250,1252,1254,1256,1258,1260,1262,1264,1266,1268,1270,1272,1274,1276,1278,1280,1282,1285,1287,1289,1291,1293,1295,1297,1299,1302,1304,1306,1308,1311,1313,1315,1317,1320,1322,1324,1326,1329,1331,1333,1335,1338,1340,1342,1344,1347,1349,1351,1353,1355,1357,1359,1361,1364,1368,1371,1373,1376,1378,1381,1383,1386,1388,1391,1393,1395,1397,1399,1402,1404,1406,1408,1411,1413,1415,1417,1419,1421,1423,1426,1428,1430,1432,1434,1436,1438,1440,1442,1444,1446,1448,1450,1452,1454,1456,1458,1460,1462,1464,1466,1469,1471,1473,1475,1477,1479,1481,1483,1485,1487,1489,1491,1493,1495,1497,1499,1501,1503,1505,1507,1509,1511,1513,1515,1517,1519,1521,1523,1525,1527,1529,1531,1533,1535,1537,1539,1541,1543,1545,1547,1549,1551,1553,1555,1557,1560,1562,1564,1566,1568,1570,1572,1575,1577,1579,1581,1583,1585,1587,1589,1591,1593,1595,1597,1599,1601,1603,1605,1607,1609,1611,1613,1615,1617,1619,1621,1623,1625,1627,1629,1631,1633,1635,1637,1640,1642,1644,1646,1648,1650,1652,1654,1656,1658,1660,1662,1664,1666,1668,1670,1672,1674,1676,1678,1680,1682,1684,1686,1688,1690,1692,1694,1696,1698,1700,1702,1704,1706,1708,1710,1712,1714,1716,1718,1720,1722,1724,1726,1728,1730,1732,1734,1736,1738,1740,1742,1744,1746,1748,1750,1752,1754,1756,1758,1760,1762,1764,1766,1768,1770,1772,1774,1776,1778,1781,1783,1785,1787,1789,1791,1793,1795,1797,1799,1801,1803,1805,1807,1809,1811,1813,1815,1817,1819,1821,1823,1825,1827,1830,1832,1834,1836,1838,1840,1843,1845,1848,1850,1852,1854,1857,1859,1862,1864,1866,1868,1870,1872,1874,1876,1878,1880,1882,1884,1886,1888,1890,1892,1894,1896,1898,1900,1902,1904,1906,1908,1910,1912,1914,1916,1918,1920,1922,1924,1926,1928,1931,1933,1935,1937,1940,1942,1944,1946,1949,1951,1953,1955,1957,1959,1961,1964,1966,1968,1970,1972,1974,1976,1978,1980,1982,1984,1986,1988,1991,1993,1995,1997,1999,2001,2003,2005,2007,2009,2011,2013,2015,2017,2019,2021,2023,2025,2027,2029,2031,2033,2035,2037,2039,2041,2043,2045,2047,2049,2051,2053,2055,2057,2059,2061,2063,2065,2067,2069,2071,2073,2075,2077,2079,2081,2083,2085,2087,2089,2091,2093,2095,2097,2099,2101,2103,2105,2107,2109,2111,2113,2115,2117,2119,2121,2123,2125,2127,2129,2132,2134,2137,2139,2141,2143,2145,2147,2149,2151,2153,2155,2157,2159,2161,2163,2165,2167,2169,2171,2173,2175,2177,2179,2181,2183,2185,2187,2189,2191,2193,2195,2197,2199,2201,2203,2205,2207,2210,2212,2214,2216,2218,2220,2222,2224,2226,2228,2230,2232,2234,2236,2238,2240,2242,2244,2246,2248,2250,2252,2254,2256,2258,2260,2262,2264,2266,2268,2270,2272,2274,2276,2278,2280,2282,2284,2286,2288,2290,2292,2294,2296,2298,2301,2303,2305,2307,2309,2311,2313,2316,2318,2320,2322,2324,2326,2328,2330,2332,2334,2336,2338,2340,2342,2344,2346,2348,2350,2352,2354,2356,2358,2360,2362,2364,2366,2368,2370,2372,2374,2376,2378,2381,2383,2385,2387,2389,2391,2393,2395,2397,2399,2401,2403,2405,2407,2409,2411,2413,2415,2417,2419,2421,2423,2425,2427,2429,2431,2433,2435,2437,2439,2441,2443,2445,2447,2449,2451,2453,2455,2457,2459,2461,2463,2465,2467,2469,2471,2473,2475,2477,2479,2481,2483,2485,2488,2490,2492,2494,2496,2498,2500,2502,2504,2506,2508,2510,2512,2514,2516,2518,2520,2523,2525,2527,2529,2531,2533,2535,2537,2539,2541,2543,2545,2547,2549,2551,2553,2555,2557,2559,2561,2563,2565,2567,2569,2572,2574,2576,2578,2580,2582,2584,2586,2588,2590,2592,2594,2596,2598,2600,2602,2604,2606,2608,2610,2612,2614,2616,2618,2620,2622,2624,2626,2628,2630,2632,2634,2636,2638,2640,2642,2644,2646,2648,2651,2653,2655,2657,2659,2661,2663,2665,2667,2669,2671,2673,2675,2678,2680,2682,2684,2686,2688,2690,2692,2694,2696,2698,2700,2702,2704,2706,2708,2710,2712,2714,2716,2718,2720,2722,2724,2726,2728,2730,2732,2734,2736,2738,2740,2742,2744,2746,2748,2750,2752,2754,2756,2758,2760,2762,2764,2766,2768,2770,2772,2774,2776,2778,2780,2782,2784,2786,2788,2790,2792,2794,2796,2798,2800,2802,2804,2806,2808,2810,2812,2814,2816,2819,2821,2823,2825,2827,2829,2831,2833,2835,2837,2839,2841,2843,2845,2847,2849,2851,2853,2855,2857,2859,2861,2863,2865,2867,2869,2871,2873,2875,2877,2879,2881,2883,2885,2887,2889,2891,2894,2896,2898,2900,2902,2904,2906,2908,2910,2912,2914,2916,2918,2920,2922,2924,2926,2928,2930,2932,2934,2936,2938,2940,2942,2944,2946,2948,2950,2952,2954,2956,2958,2960,2962,2964,2966,2968,2970,2972,2974,2976,2978,2980,2982,2985,2987,2989,2991,2993,2995,2997,3000,3002,3004,3006,3008,3010,3012,3014,3016,3018,3020,3022,3024,3026,3028,3030,3032,3034,3036,3038,3040,3042,3044,3046,3048,3050,3052,3054,3056,3058,3060,3062,3065,3067,3069,3071,3073,3075,3077,3079,3081,3083,3085,3087,3089,3091,3093,3095,3097,3099,3101,3103,3105,3107,3109,3111,3113,3115,3117,3119,3121,3123,3125,3127,3129,3131,3133,3135,3137,3139,3141,3143,3145,3147,3149,3151,3153,3155,3157,3159,3161,3163,3165,3167,3169,3171,3173,3175,3177,3179,3181,3183,3185,3187,3189,3191,3193,3195,3197,3199,3201,3203,3206,3208,3210,3212,3214,3216,3218,3220,3222,3224,3226,3228,3230,3232,3234,3236,3238,3240,3242,3244,3246,3248,3250,3252,3255,3257,3259,3261,3263,3265,3267,3269,3271,3273,3275,3277,3279,3281,3283,3285,3287,3289,3291,3293,3295,3297,3299,3301,3303,3305,3307,3309,3311,3313,3315,3317,3319,3321,3323,3325,3327,3329,3331,3333,3335,3337,3339,3341,3343,3345,3347,3349,3351,3353,3355,3357,3360,3362,3364,3366,3368,3370,3372,3374,3376,3378,3380,3382,3384,3386,3388,3390,3392,3394,3396,3398,3400,3402,3404,3406,3408,3410,3412,3414,3416,3418,3420,3422,3424,3426,3428,3430,3432,3434,3436,3438,3440,3442,3444,3446,3448,3450,3452,3454,3456,3458,3460,3462,3464,3466,3468,3470,3472,3474,3476,3478,3480,3482,3484,3486,3488,3490,3492,3494,3496,3498,3501,3503,3505,3507,3509,3511,3513,3515,3517,3519,3521,3523,3525,3527,3529,3531,3533,3535,3537,3539,3541,3543,3545,3547,3549,3551,3553,3555,3557,3559,3561,3563,3565,3567,3569,3571,3573,3576,3578,3580,3582,3584,3586,3588,3590,3592,3594,3596,3598,3600,3602,3604,3606,3608,3610,3612,3614,3616,3618,3620,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3648,3650,3652,3654,3656,3658,3660,3662,3664,3667,3669,3671,3673,3675,3677,3679,3682,3684,3686,3688,3690,3692,3694,3696,3698,3700,3702,3704,3706,3708,3710,3712,3714,3716,3718,3720,3722,3724,3726,3728,3730,3732,3734,3736,3738,3740,3742,3744,3747,3749,3751,3753,3755,3757,3759,3761,3763,3765,3767,3769,3771,3773,3775,3777,3779,3781,3783,3785,3787,3789,3791,3793,3795,3797,3799,3801,3803,3805,3807,3809,3811,3813,3815,3817,3819,3821,3823,3825,3827,3829,3831,3833,3835,3837,3839,3841,3843,3845,3847,3849,3851,3853,3855,3857,3859,3861,3863,3865,3867,3869,3871,3873,3875,3877,3879,3881,3883,3885,3888,3890,3892,3894,3896,3898,3900,3902,3904,3906,3908,3910,3912,3914,3916,3918,3920,3922,3924,3926,3928,3930,3932,3934,3937,3939,3941,3943,3945,3947,3949,3951,3953,3955,3957,3959,3961,3963,3965,3967,3969,3971,3973,3975,3977,3979,3981,3983,3985,3987,3989,3991,3993,3995,3997,3999,4001,4003,4005,4007,4009,4011,4013,4016,4018,4020,4022,4024,4026,4028,4030,4032,4034,4036,4038,4040,4043,4045,4047,4049,4051,4053,4055,4057,4059,4061,4063,4065,4067,4069,4071,4073,4075,4077,4079,4081,4083,4085,4087,4089,4091,4093,4095,4097,4099,4101,4103,4105,4107,4109,4111,4113,4115,4117,4119,4121,4123,4125,4127,4129,4131,4133,4135,4137,4139,4141,4143,4145,4147,4149,4151,4153,4155,4157,4159,4161,4163,4165,4167,4169,4171,4173,4175,4177,4179,4181,4184,4186,4189,4191,4194,4196,4198,4200,4202,4204,4206,4208,4210,4212,4214,4216,4218,4220,4222,4224,4226,4228,4230,4232,4234,4236,4238,4240,4242,4244,4246,4248,4250,4252,4254,4256,4258,4260,4262,4264,4267,4269,4271,4273,4275,4277,4279,4281,4283,4285,4287,4289,4291,4293,4295,4297,4299,4301,4303,4305,4307,4309,4311,4313,4315,4317,4319,4321,4323,4325,4327,4329,4331,4333,4335,4337,4339,4341,4343,4345,4347,4349,4351,4353,4355,4358,4360,4362,4364,4366,4368,4370,4373,4375,4377,4379,4381,4383,4385,4387,4389,4391,4393,4395,4397,4399,4401,4403,4405,4407,4409,4411,4413,4415,4417,4419,4421,4423,4425,4427,4429,4431,4433,4435,4438,4440,4442,4444,4446,4448,4450,4452,4454,4456,4458,4460,4462,4464,4466,4468,4470,4472,4474,4476,4478,4480,4482,4484,4486,4488,4490,4492,4494,4496,4498,4500,4502,4504,4506,4508,4510,4512,4514,4516,4518,4520,4522,4524,4526,4528,4530,4532,4534,4536,4538,4540,4542,4544,4546,4548,4550,4552,4554,4556,4558,4560,4562,4564,4566,4568,4570,4572,4574,4576,4579,4581,4583,4585,4587,4589,4591,4593,4595,4597,4599,4601,4603,4605,4607,4609,4611,4613,4615,4617,4619,4621,4623,4625,4628,4630,4632,4634,4636,4638,4640,4642,4644,4646,4648,4650,4652,4654,4656,4658,4660,4662,4664,4666,4668,4670,4672,4674,4676,4678,4680,4682,4684,4686,4688,4690,4692,4694,4696,4698,4700,4702,4704,4706,4708,4710,4712,4714,4716,4718,4720,4722,4725,4727,4729,4731,4733,4735,4737,4739,4742,4744,4746,4748,4750,4752,4754,4756,4758,4760,4762,4764,4766,4768,4770,4772,4774,4776,4778,4780,4783,4785,4787,4789,4791,4793,4795,4797,4799,4801,4803,4805,4807,4809,4811,4813,4815,4817,4819,4821,4823,4825,4827,4829,4831,4833,4835,4837,4839,4841,4843,4845,4847,4849,4851,4853,4855,4857,4859,4861,4863,4865,4867,4869,4871,4873,4875,4877,4879,4881,4883,4885,4887,4889,4891,4893,4895,4897,4899,4901,4903,4905,4907,4909,4911,4913,4915,4917,4919,4921,4924,4926,4929,4931,4934,4936,4938,4940,4942,4944,4946,4948,4950,4952,4954,4956,4958,4960,4962,4964,4966,4968,4970,4972,4974,4976,4978,4980,4982,4984,4986,4988,4990,4992,4994,4996,4998,5000,5002,5004,5006,5008,5010,5012,5014,5016,5018,5020,5023,5025,5027,5029,5031,5033,5035,5037,5040,5042,5044,5046,5049,5051,5053,5055,5058,5060,5062,5064,5067,5069,5071,5073,5076,5078,5080,5082,5085,5087,5089,5091,5094,5096,5098,5100,5103,5105,5107,5109,5112,5114,5116,5118,5121,5123,5125,5127,5130,5132],{"class":270,"line":271},[268,688,690],{"class":689},"sMK4o","[{",[268,692,693],{"class":689},"\"",[268,695,521],{"class":696},"spNyl",[268,698,693],{"class":689},[268,700,701],{"class":689},":",[268,703,693],{"class":689},[268,705,707],{"class":706},"sfazB","01aeec8769243693",[268,709,693],{"class":689},[268,711,712],{"class":689},",",[268,714,693],{"class":689},[268,716,717],{"class":696},"type",[268,719,693],{"class":689},[268,721,701],{"class":689},[268,723,693],{"class":689},[268,725,726],{"class":706},"mysql",[268,728,693],{"class":689},[268,730,712],{"class":689},[268,732,693],{"class":689},[268,734,735],{"class":696},"z",[268,737,693],{"class":689},[268,739,701],{"class":689},[268,741,693],{"class":689},[268,743,744],{"class":706},"a9e5683585deb91e",[268,746,693],{"class":689},[268,748,712],{"class":689},[268,750,693],{"class":689},[268,752,753],{"class":696},"mydb",[268,755,693],{"class":689},[268,757,701],{"class":689},[268,759,693],{"class":689},[268,761,762],{"class":706},"bceed1e54606b872",[268,764,693],{"class":689},[268,766,712],{"class":689},[268,768,693],{"class":689},[268,770,771],{"class":696},"name",[268,773,693],{"class":689},[268,775,701],{"class":689},[268,777,693],{"class":689},[268,779,30],{"class":706},[268,781,693],{"class":689},[268,783,712],{"class":689},[268,785,693],{"class":689},[268,787,788],{"class":696},"x",[268,790,693],{"class":689},[268,792,701],{"class":689},[268,794,796],{"class":795},"sbssI","980",[268,798,712],{"class":689},[268,800,693],{"class":689},[268,802,803],{"class":696},"y",[268,805,693],{"class":689},[268,807,701],{"class":689},[268,809,810],{"class":795},"1660",[268,812,712],{"class":689},[268,814,693],{"class":689},[268,816,817],{"class":696},"wires",[268,819,693],{"class":689},[268,821,822],{"class":689},":[[",[268,824,693],{"class":689},[268,826,827],{"class":706},"e9ae7f0a3fdbfbc5",[268,829,693],{"class":689},[268,831,832],{"class":689},"]]},{",[268,834,693],{"class":689},[268,836,521],{"class":696},[268,838,693],{"class":689},[268,840,701],{"class":689},[268,842,693],{"class":689},[268,844,827],{"class":706},[268,846,693],{"class":689},[268,848,712],{"class":689},[268,850,693],{"class":689},[268,852,717],{"class":696},[268,854,693],{"class":689},[268,856,701],{"class":689},[268,858,693],{"class":689},[268,860,861],{"class":706},"debug",[268,863,693],{"class":689},[268,865,712],{"class":689},[268,867,693],{"class":689},[268,869,735],{"class":696},[268,871,693],{"class":689},[268,873,701],{"class":689},[268,875,693],{"class":689},[268,877,744],{"class":706},[268,879,693],{"class":689},[268,881,712],{"class":689},[268,883,693],{"class":689},[268,885,771],{"class":696},[268,887,693],{"class":689},[268,889,701],{"class":689},[268,891,693],{"class":689},[268,893,894],{"class":706},"debug 1",[268,896,693],{"class":689},[268,898,712],{"class":689},[268,900,693],{"class":689},[268,902,903],{"class":696},"active",[268,905,693],{"class":689},[268,907,908],{"class":689},":true,",[268,910,693],{"class":689},[268,912,913],{"class":696},"tosidebar",[268,915,693],{"class":689},[268,917,908],{"class":689},[268,919,693],{"class":689},[268,921,922],{"class":696},"console",[268,924,693],{"class":689},[268,926,927],{"class":689},":false,",[268,929,693],{"class":689},[268,931,932],{"class":696},"tostatus",[268,934,693],{"class":689},[268,936,927],{"class":689},[268,938,693],{"class":689},[268,940,941],{"class":696},"complete",[268,943,693],{"class":689},[268,945,701],{"class":689},[268,947,693],{"class":689},[268,949,950],{"class":706},"true",[268,952,693],{"class":689},[268,954,712],{"class":689},[268,956,693],{"class":689},[268,958,959],{"class":696},"targetType",[268,961,693],{"class":689},[268,963,701],{"class":689},[268,965,693],{"class":689},[268,967,968],{"class":706},"full",[268,970,693],{"class":689},[268,972,712],{"class":689},[268,974,693],{"class":689},[268,976,977],{"class":696},"statusVal",[268,979,693],{"class":689},[268,981,701],{"class":689},[268,983,984],{"class":689},"\"\"",[268,986,712],{"class":689},[268,988,693],{"class":689},[268,990,991],{"class":696},"statusType",[268,993,693],{"class":689},[268,995,701],{"class":689},[268,997,693],{"class":689},[268,999,1000],{"class":706},"auto",[268,1002,693],{"class":689},[268,1004,712],{"class":689},[268,1006,693],{"class":689},[268,1008,788],{"class":696},[268,1010,693],{"class":689},[268,1012,701],{"class":689},[268,1014,1015],{"class":795},"1160",[268,1017,712],{"class":689},[268,1019,693],{"class":689},[268,1021,803],{"class":696},[268,1023,693],{"class":689},[268,1025,701],{"class":689},[268,1027,810],{"class":795},[268,1029,712],{"class":689},[268,1031,693],{"class":689},[268,1033,817],{"class":696},[268,1035,693],{"class":689},[268,1037,1038],{"class":689},":[]},{",[268,1040,693],{"class":689},[268,1042,521],{"class":696},[268,1044,693],{"class":689},[268,1046,701],{"class":689},[268,1048,693],{"class":689},[268,1050,1051],{"class":706},"faf229c38d675b2b",[268,1053,693],{"class":689},[268,1055,712],{"class":689},[268,1057,693],{"class":689},[268,1059,717],{"class":696},[268,1061,693],{"class":689},[268,1063,701],{"class":689},[268,1065,693],{"class":689},[268,1067,1068],{"class":706},"inject",[268,1070,693],{"class":689},[268,1072,712],{"class":689},[268,1074,693],{"class":689},[268,1076,735],{"class":696},[268,1078,693],{"class":689},[268,1080,701],{"class":689},[268,1082,693],{"class":689},[268,1084,744],{"class":706},[268,1086,693],{"class":689},[268,1088,712],{"class":689},[268,1090,693],{"class":689},[268,1092,771],{"class":696},[268,1094,693],{"class":689},[268,1096,701],{"class":689},[268,1098,693],{"class":689},[268,1100,1101],{"class":706},"Create the table",[268,1103,693],{"class":689},[268,1105,712],{"class":689},[268,1107,693],{"class":689},[268,1109,1110],{"class":696},"props",[268,1112,693],{"class":689},[268,1114,1115],{"class":689},":[],",[268,1117,693],{"class":689},[268,1119,1120],{"class":696},"repeat",[268,1122,693],{"class":689},[268,1124,701],{"class":689},[268,1126,984],{"class":689},[268,1128,712],{"class":689},[268,1130,693],{"class":689},[268,1132,1133],{"class":696},"crontab",[268,1135,693],{"class":689},[268,1137,701],{"class":689},[268,1139,984],{"class":689},[268,1141,712],{"class":689},[268,1143,693],{"class":689},[268,1145,1146],{"class":696},"once",[268,1148,693],{"class":689},[268,1150,927],{"class":689},[268,1152,693],{"class":689},[268,1154,1155],{"class":696},"onceDelay",[268,1157,693],{"class":689},[268,1159,701],{"class":689},[268,1161,984],{"class":689},[268,1163,712],{"class":689},[268,1165,693],{"class":689},[268,1167,1168],{"class":696},"topic",[268,1170,693],{"class":689},[268,1172,701],{"class":689},[268,1174,984],{"class":689},[268,1176,712],{"class":689},[268,1178,693],{"class":689},[268,1180,788],{"class":696},[268,1182,693],{"class":689},[268,1184,701],{"class":689},[268,1186,1187],{"class":795},"600",[268,1189,712],{"class":689},[268,1191,693],{"class":689},[268,1193,803],{"class":696},[268,1195,693],{"class":689},[268,1197,701],{"class":689},[268,1199,810],{"class":795},[268,1201,712],{"class":689},[268,1203,693],{"class":689},[268,1205,817],{"class":696},[268,1207,693],{"class":689},[268,1209,822],{"class":689},[268,1211,693],{"class":689},[268,1213,1214],{"class":706},"b407dbb1901749bf",[268,1216,693],{"class":689},[268,1218,832],{"class":689},[268,1220,693],{"class":689},[268,1222,521],{"class":696},[268,1224,693],{"class":689},[268,1226,701],{"class":689},[268,1228,693],{"class":689},[268,1230,1214],{"class":706},[268,1232,693],{"class":689},[268,1234,712],{"class":689},[268,1236,693],{"class":689},[268,1238,717],{"class":696},[268,1240,693],{"class":689},[268,1242,701],{"class":689},[268,1244,693],{"class":689},[268,1246,1247],{"class":706},"template",[268,1249,693],{"class":689},[268,1251,712],{"class":689},[268,1253,693],{"class":689},[268,1255,735],{"class":696},[268,1257,693],{"class":689},[268,1259,701],{"class":689},[268,1261,693],{"class":689},[268,1263,744],{"class":706},[268,1265,693],{"class":689},[268,1267,712],{"class":689},[268,1269,693],{"class":689},[268,1271,771],{"class":696},[268,1273,693],{"class":689},[268,1275,701],{"class":689},[268,1277,984],{"class":689},[268,1279,712],{"class":689},[268,1281,693],{"class":689},[268,1283,1284],{"class":696},"field",[268,1286,693],{"class":689},[268,1288,701],{"class":689},[268,1290,693],{"class":689},[268,1292,1168],{"class":706},[268,1294,693],{"class":689},[268,1296,712],{"class":689},[268,1298,693],{"class":689},[268,1300,1301],{"class":696},"fieldType",[268,1303,693],{"class":689},[268,1305,701],{"class":689},[268,1307,693],{"class":689},[268,1309,1310],{"class":706},"msg",[268,1312,693],{"class":689},[268,1314,712],{"class":689},[268,1316,693],{"class":689},[268,1318,1319],{"class":696},"format",[268,1321,693],{"class":689},[268,1323,701],{"class":689},[268,1325,693],{"class":689},[268,1327,1328],{"class":706},"handlebars",[268,1330,693],{"class":689},[268,1332,712],{"class":689},[268,1334,693],{"class":689},[268,1336,1337],{"class":696},"syntax",[268,1339,693],{"class":689},[268,1341,701],{"class":689},[268,1343,693],{"class":689},[268,1345,1346],{"class":706},"mustache",[268,1348,693],{"class":689},[268,1350,712],{"class":689},[268,1352,693],{"class":689},[268,1354,1247],{"class":696},[268,1356,693],{"class":689},[268,1358,701],{"class":689},[268,1360,693],{"class":689},[268,1362,1363],{"class":706},"CREATE TABLE IF NOT EXISTS weather_data (",[268,1365,1367],{"class":1366},"sTEyZ","\\n",[268,1369,1370],{"class":706}," id INT AUTO_INCREMENT PRIMARY KEY,",[268,1372,1367],{"class":1366},[268,1374,1375],{"class":706}," location VARCHAR(100) NOT NULL,",[268,1377,1367],{"class":1366},[268,1379,1380],{"class":706}," date DATETIME NOT NULL,",[268,1382,1367],{"class":1366},[268,1384,1385],{"class":706}," tem DECIMAL(5, 2) NOT NULL",[268,1387,1367],{"class":1366},[268,1389,1390],{"class":706},");",[268,1392,1367],{"class":1366},[268,1394,693],{"class":689},[268,1396,712],{"class":689},[268,1398,693],{"class":689},[268,1400,1401],{"class":696},"output",[268,1403,693],{"class":689},[268,1405,701],{"class":689},[268,1407,693],{"class":689},[268,1409,1410],{"class":706},"str",[268,1412,693],{"class":689},[268,1414,712],{"class":689},[268,1416,693],{"class":689},[268,1418,788],{"class":696},[268,1420,693],{"class":689},[268,1422,701],{"class":689},[268,1424,1425],{"class":795},"820",[268,1427,712],{"class":689},[268,1429,693],{"class":689},[268,1431,803],{"class":696},[268,1433,693],{"class":689},[268,1435,701],{"class":689},[268,1437,810],{"class":795},[268,1439,712],{"class":689},[268,1441,693],{"class":689},[268,1443,817],{"class":696},[268,1445,693],{"class":689},[268,1447,822],{"class":689},[268,1449,693],{"class":689},[268,1451,707],{"class":706},[268,1453,693],{"class":689},[268,1455,832],{"class":689},[268,1457,693],{"class":689},[268,1459,521],{"class":696},[268,1461,693],{"class":689},[268,1463,701],{"class":689},[268,1465,693],{"class":689},[268,1467,1468],{"class":706},"cfc26503f0812a88",[268,1470,693],{"class":689},[268,1472,712],{"class":689},[268,1474,693],{"class":689},[268,1476,717],{"class":696},[268,1478,693],{"class":689},[268,1480,701],{"class":689},[268,1482,693],{"class":689},[268,1484,726],{"class":706},[268,1486,693],{"class":689},[268,1488,712],{"class":689},[268,1490,693],{"class":689},[268,1492,735],{"class":696},[268,1494,693],{"class":689},[268,1496,701],{"class":689},[268,1498,693],{"class":689},[268,1500,744],{"class":706},[268,1502,693],{"class":689},[268,1504,712],{"class":689},[268,1506,693],{"class":689},[268,1508,753],{"class":696},[268,1510,693],{"class":689},[268,1512,701],{"class":689},[268,1514,693],{"class":689},[268,1516,762],{"class":706},[268,1518,693],{"class":689},[268,1520,712],{"class":689},[268,1522,693],{"class":689},[268,1524,771],{"class":696},[268,1526,693],{"class":689},[268,1528,701],{"class":689},[268,1530,693],{"class":689},[268,1532,30],{"class":706},[268,1534,693],{"class":689},[268,1536,712],{"class":689},[268,1538,693],{"class":689},[268,1540,788],{"class":696},[268,1542,693],{"class":689},[268,1544,701],{"class":689},[268,1546,796],{"class":795},[268,1548,712],{"class":689},[268,1550,693],{"class":689},[268,1552,803],{"class":696},[268,1554,693],{"class":689},[268,1556,701],{"class":689},[268,1558,1559],{"class":795},"1760",[268,1561,712],{"class":689},[268,1563,693],{"class":689},[268,1565,817],{"class":696},[268,1567,693],{"class":689},[268,1569,822],{"class":689},[268,1571,693],{"class":689},[268,1573,1574],{"class":706},"236d40b1edb920d2",[268,1576,693],{"class":689},[268,1578,832],{"class":689},[268,1580,693],{"class":689},[268,1582,521],{"class":696},[268,1584,693],{"class":689},[268,1586,701],{"class":689},[268,1588,693],{"class":689},[268,1590,1574],{"class":706},[268,1592,693],{"class":689},[268,1594,712],{"class":689},[268,1596,693],{"class":689},[268,1598,717],{"class":696},[268,1600,693],{"class":689},[268,1602,701],{"class":689},[268,1604,693],{"class":689},[268,1606,861],{"class":706},[268,1608,693],{"class":689},[268,1610,712],{"class":689},[268,1612,693],{"class":689},[268,1614,735],{"class":696},[268,1616,693],{"class":689},[268,1618,701],{"class":689},[268,1620,693],{"class":689},[268,1622,744],{"class":706},[268,1624,693],{"class":689},[268,1626,712],{"class":689},[268,1628,693],{"class":689},[268,1630,771],{"class":696},[268,1632,693],{"class":689},[268,1634,701],{"class":689},[268,1636,693],{"class":689},[268,1638,1639],{"class":706},"debug 2",[268,1641,693],{"class":689},[268,1643,712],{"class":689},[268,1645,693],{"class":689},[268,1647,903],{"class":696},[268,1649,693],{"class":689},[268,1651,908],{"class":689},[268,1653,693],{"class":689},[268,1655,913],{"class":696},[268,1657,693],{"class":689},[268,1659,908],{"class":689},[268,1661,693],{"class":689},[268,1663,922],{"class":696},[268,1665,693],{"class":689},[268,1667,927],{"class":689},[268,1669,693],{"class":689},[268,1671,932],{"class":696},[268,1673,693],{"class":689},[268,1675,927],{"class":689},[268,1677,693],{"class":689},[268,1679,941],{"class":696},[268,1681,693],{"class":689},[268,1683,701],{"class":689},[268,1685,693],{"class":689},[268,1687,950],{"class":706},[268,1689,693],{"class":689},[268,1691,712],{"class":689},[268,1693,693],{"class":689},[268,1695,959],{"class":696},[268,1697,693],{"class":689},[268,1699,701],{"class":689},[268,1701,693],{"class":689},[268,1703,968],{"class":706},[268,1705,693],{"class":689},[268,1707,712],{"class":689},[268,1709,693],{"class":689},[268,1711,977],{"class":696},[268,1713,693],{"class":689},[268,1715,701],{"class":689},[268,1717,984],{"class":689},[268,1719,712],{"class":689},[268,1721,693],{"class":689},[268,1723,991],{"class":696},[268,1725,693],{"class":689},[268,1727,701],{"class":689},[268,1729,693],{"class":689},[268,1731,1000],{"class":706},[268,1733,693],{"class":689},[268,1735,712],{"class":689},[268,1737,693],{"class":689},[268,1739,788],{"class":696},[268,1741,693],{"class":689},[268,1743,701],{"class":689},[268,1745,1015],{"class":795},[268,1747,712],{"class":689},[268,1749,693],{"class":689},[268,1751,803],{"class":696},[268,1753,693],{"class":689},[268,1755,701],{"class":689},[268,1757,1559],{"class":795},[268,1759,712],{"class":689},[268,1761,693],{"class":689},[268,1763,817],{"class":696},[268,1765,693],{"class":689},[268,1767,1038],{"class":689},[268,1769,693],{"class":689},[268,1771,521],{"class":696},[268,1773,693],{"class":689},[268,1775,701],{"class":689},[268,1777,693],{"class":689},[268,1779,1780],{"class":706},"25790e7a3aef22bf",[268,1782,693],{"class":689},[268,1784,712],{"class":689},[268,1786,693],{"class":689},[268,1788,717],{"class":696},[268,1790,693],{"class":689},[268,1792,701],{"class":689},[268,1794,693],{"class":689},[268,1796,1068],{"class":706},[268,1798,693],{"class":689},[268,1800,712],{"class":689},[268,1802,693],{"class":689},[268,1804,735],{"class":696},[268,1806,693],{"class":689},[268,1808,701],{"class":689},[268,1810,693],{"class":689},[268,1812,744],{"class":706},[268,1814,693],{"class":689},[268,1816,712],{"class":689},[268,1818,693],{"class":689},[268,1820,771],{"class":696},[268,1822,693],{"class":689},[268,1824,701],{"class":689},[268,1826,693],{"class":689},[268,1828,1829],{"class":706},"Insert the data into the table",[268,1831,693],{"class":689},[268,1833,712],{"class":689},[268,1835,693],{"class":689},[268,1837,1110],{"class":696},[268,1839,693],{"class":689},[268,1841,1842],{"class":689},":[{",[268,1844,693],{"class":689},[268,1846,14],{"class":1847},"sBMFI",[268,1849,693],{"class":689},[268,1851,701],{"class":689},[268,1853,693],{"class":689},[268,1855,1856],{"class":706},"payload",[268,1858,693],{"class":689},[268,1860,1861],{"class":689},"}],",[268,1863,693],{"class":689},[268,1865,1120],{"class":696},[268,1867,693],{"class":689},[268,1869,701],{"class":689},[268,1871,984],{"class":689},[268,1873,712],{"class":689},[268,1875,693],{"class":689},[268,1877,1133],{"class":696},[268,1879,693],{"class":689},[268,1881,701],{"class":689},[268,1883,984],{"class":689},[268,1885,712],{"class":689},[268,1887,693],{"class":689},[268,1889,1146],{"class":696},[268,1891,693],{"class":689},[268,1893,927],{"class":689},[268,1895,693],{"class":689},[268,1897,1155],{"class":696},[268,1899,693],{"class":689},[268,1901,701],{"class":689},[268,1903,984],{"class":689},[268,1905,712],{"class":689},[268,1907,693],{"class":689},[268,1909,1168],{"class":696},[268,1911,693],{"class":689},[268,1913,701],{"class":689},[268,1915,984],{"class":689},[268,1917,712],{"class":689},[268,1919,693],{"class":689},[268,1921,1856],{"class":696},[268,1923,693],{"class":689},[268,1925,701],{"class":689},[268,1927,693],{"class":689},[268,1929,1930],{"class":706},"$random() * 100",[268,1932,693],{"class":689},[268,1934,712],{"class":689},[268,1936,693],{"class":689},[268,1938,1939],{"class":696},"payloadType",[268,1941,693],{"class":689},[268,1943,701],{"class":689},[268,1945,693],{"class":689},[268,1947,1948],{"class":706},"jsonata",[268,1950,693],{"class":689},[268,1952,712],{"class":689},[268,1954,693],{"class":689},[268,1956,788],{"class":696},[268,1958,693],{"class":689},[268,1960,701],{"class":689},[268,1962,1963],{"class":795},"560",[268,1965,712],{"class":689},[268,1967,693],{"class":689},[268,1969,803],{"class":696},[268,1971,693],{"class":689},[268,1973,701],{"class":689},[268,1975,1559],{"class":795},[268,1977,712],{"class":689},[268,1979,693],{"class":689},[268,1981,817],{"class":696},[268,1983,693],{"class":689},[268,1985,822],{"class":689},[268,1987,693],{"class":689},[268,1989,1990],{"class":706},"7a798b3539da9547",[268,1992,693],{"class":689},[268,1994,832],{"class":689},[268,1996,693],{"class":689},[268,1998,521],{"class":696},[268,2000,693],{"class":689},[268,2002,701],{"class":689},[268,2004,693],{"class":689},[268,2006,1990],{"class":706},[268,2008,693],{"class":689},[268,2010,712],{"class":689},[268,2012,693],{"class":689},[268,2014,717],{"class":696},[268,2016,693],{"class":689},[268,2018,701],{"class":689},[268,2020,693],{"class":689},[268,2022,1247],{"class":706},[268,2024,693],{"class":689},[268,2026,712],{"class":689},[268,2028,693],{"class":689},[268,2030,735],{"class":696},[268,2032,693],{"class":689},[268,2034,701],{"class":689},[268,2036,693],{"class":689},[268,2038,744],{"class":706},[268,2040,693],{"class":689},[268,2042,712],{"class":689},[268,2044,693],{"class":689},[268,2046,771],{"class":696},[268,2048,693],{"class":689},[268,2050,701],{"class":689},[268,2052,984],{"class":689},[268,2054,712],{"class":689},[268,2056,693],{"class":689},[268,2058,1284],{"class":696},[268,2060,693],{"class":689},[268,2062,701],{"class":689},[268,2064,693],{"class":689},[268,2066,1168],{"class":706},[268,2068,693],{"class":689},[268,2070,712],{"class":689},[268,2072,693],{"class":689},[268,2074,1301],{"class":696},[268,2076,693],{"class":689},[268,2078,701],{"class":689},[268,2080,693],{"class":689},[268,2082,1310],{"class":706},[268,2084,693],{"class":689},[268,2086,712],{"class":689},[268,2088,693],{"class":689},[268,2090,1319],{"class":696},[268,2092,693],{"class":689},[268,2094,701],{"class":689},[268,2096,693],{"class":689},[268,2098,1328],{"class":706},[268,2100,693],{"class":689},[268,2102,712],{"class":689},[268,2104,693],{"class":689},[268,2106,1337],{"class":696},[268,2108,693],{"class":689},[268,2110,701],{"class":689},[268,2112,693],{"class":689},[268,2114,1346],{"class":706},[268,2116,693],{"class":689},[268,2118,712],{"class":689},[268,2120,693],{"class":689},[268,2122,1247],{"class":696},[268,2124,693],{"class":689},[268,2126,701],{"class":689},[268,2128,693],{"class":689},[268,2130,2131],{"class":706},"INSERT INTO weather_data (location, date, tem)",[268,2133,1367],{"class":1366},[268,2135,2136],{"class":706},"VALUES ('New York', CURTIME(), {{ payload }});",[268,2138,693],{"class":689},[268,2140,712],{"class":689},[268,2142,693],{"class":689},[268,2144,1401],{"class":696},[268,2146,693],{"class":689},[268,2148,701],{"class":689},[268,2150,693],{"class":689},[268,2152,1410],{"class":706},[268,2154,693],{"class":689},[268,2156,712],{"class":689},[268,2158,693],{"class":689},[268,2160,788],{"class":696},[268,2162,693],{"class":689},[268,2164,701],{"class":689},[268,2166,1425],{"class":795},[268,2168,712],{"class":689},[268,2170,693],{"class":689},[268,2172,803],{"class":696},[268,2174,693],{"class":689},[268,2176,701],{"class":689},[268,2178,1559],{"class":795},[268,2180,712],{"class":689},[268,2182,693],{"class":689},[268,2184,817],{"class":696},[268,2186,693],{"class":689},[268,2188,822],{"class":689},[268,2190,693],{"class":689},[268,2192,1468],{"class":706},[268,2194,693],{"class":689},[268,2196,832],{"class":689},[268,2198,693],{"class":689},[268,2200,521],{"class":696},[268,2202,693],{"class":689},[268,2204,701],{"class":689},[268,2206,693],{"class":689},[268,2208,2209],{"class":706},"0bbb4d17defe3067",[268,2211,693],{"class":689},[268,2213,712],{"class":689},[268,2215,693],{"class":689},[268,2217,717],{"class":696},[268,2219,693],{"class":689},[268,2221,701],{"class":689},[268,2223,693],{"class":689},[268,2225,726],{"class":706},[268,2227,693],{"class":689},[268,2229,712],{"class":689},[268,2231,693],{"class":689},[268,2233,735],{"class":696},[268,2235,693],{"class":689},[268,2237,701],{"class":689},[268,2239,693],{"class":689},[268,2241,744],{"class":706},[268,2243,693],{"class":689},[268,2245,712],{"class":689},[268,2247,693],{"class":689},[268,2249,753],{"class":696},[268,2251,693],{"class":689},[268,2253,701],{"class":689},[268,2255,693],{"class":689},[268,2257,762],{"class":706},[268,2259,693],{"class":689},[268,2261,712],{"class":689},[268,2263,693],{"class":689},[268,2265,771],{"class":696},[268,2267,693],{"class":689},[268,2269,701],{"class":689},[268,2271,693],{"class":689},[268,2273,30],{"class":706},[268,2275,693],{"class":689},[268,2277,712],{"class":689},[268,2279,693],{"class":689},[268,2281,788],{"class":696},[268,2283,693],{"class":689},[268,2285,701],{"class":689},[268,2287,796],{"class":795},[268,2289,712],{"class":689},[268,2291,693],{"class":689},[268,2293,803],{"class":696},[268,2295,693],{"class":689},[268,2297,701],{"class":689},[268,2299,2300],{"class":795},"1860",[268,2302,712],{"class":689},[268,2304,693],{"class":689},[268,2306,817],{"class":696},[268,2308,693],{"class":689},[268,2310,822],{"class":689},[268,2312,693],{"class":689},[268,2314,2315],{"class":706},"ef2de8cb0673de47",[268,2317,693],{"class":689},[268,2319,832],{"class":689},[268,2321,693],{"class":689},[268,2323,521],{"class":696},[268,2325,693],{"class":689},[268,2327,701],{"class":689},[268,2329,693],{"class":689},[268,2331,2315],{"class":706},[268,2333,693],{"class":689},[268,2335,712],{"class":689},[268,2337,693],{"class":689},[268,2339,717],{"class":696},[268,2341,693],{"class":689},[268,2343,701],{"class":689},[268,2345,693],{"class":689},[268,2347,861],{"class":706},[268,2349,693],{"class":689},[268,2351,712],{"class":689},[268,2353,693],{"class":689},[268,2355,735],{"class":696},[268,2357,693],{"class":689},[268,2359,701],{"class":689},[268,2361,693],{"class":689},[268,2363,744],{"class":706},[268,2365,693],{"class":689},[268,2367,712],{"class":689},[268,2369,693],{"class":689},[268,2371,771],{"class":696},[268,2373,693],{"class":689},[268,2375,701],{"class":689},[268,2377,693],{"class":689},[268,2379,2380],{"class":706},"debug 3",[268,2382,693],{"class":689},[268,2384,712],{"class":689},[268,2386,693],{"class":689},[268,2388,903],{"class":696},[268,2390,693],{"class":689},[268,2392,908],{"class":689},[268,2394,693],{"class":689},[268,2396,913],{"class":696},[268,2398,693],{"class":689},[268,2400,908],{"class":689},[268,2402,693],{"class":689},[268,2404,922],{"class":696},[268,2406,693],{"class":689},[268,2408,927],{"class":689},[268,2410,693],{"class":689},[268,2412,932],{"class":696},[268,2414,693],{"class":689},[268,2416,927],{"class":689},[268,2418,693],{"class":689},[268,2420,941],{"class":696},[268,2422,693],{"class":689},[268,2424,701],{"class":689},[268,2426,693],{"class":689},[268,2428,950],{"class":706},[268,2430,693],{"class":689},[268,2432,712],{"class":689},[268,2434,693],{"class":689},[268,2436,959],{"class":696},[268,2438,693],{"class":689},[268,2440,701],{"class":689},[268,2442,693],{"class":689},[268,2444,968],{"class":706},[268,2446,693],{"class":689},[268,2448,712],{"class":689},[268,2450,693],{"class":689},[268,2452,977],{"class":696},[268,2454,693],{"class":689},[268,2456,701],{"class":689},[268,2458,984],{"class":689},[268,2460,712],{"class":689},[268,2462,693],{"class":689},[268,2464,991],{"class":696},[268,2466,693],{"class":689},[268,2468,701],{"class":689},[268,2470,693],{"class":689},[268,2472,1000],{"class":706},[268,2474,693],{"class":689},[268,2476,712],{"class":689},[268,2478,693],{"class":689},[268,2480,788],{"class":696},[268,2482,693],{"class":689},[268,2484,701],{"class":689},[268,2486,2487],{"class":795},"1180",[268,2489,712],{"class":689},[268,2491,693],{"class":689},[268,2493,803],{"class":696},[268,2495,693],{"class":689},[268,2497,701],{"class":689},[268,2499,2300],{"class":795},[268,2501,712],{"class":689},[268,2503,693],{"class":689},[268,2505,817],{"class":696},[268,2507,693],{"class":689},[268,2509,1038],{"class":689},[268,2511,693],{"class":689},[268,2513,521],{"class":696},[268,2515,693],{"class":689},[268,2517,701],{"class":689},[268,2519,693],{"class":689},[268,2521,2522],{"class":706},"027c2c3801bf71a3",[268,2524,693],{"class":689},[268,2526,712],{"class":689},[268,2528,693],{"class":689},[268,2530,717],{"class":696},[268,2532,693],{"class":689},[268,2534,701],{"class":689},[268,2536,693],{"class":689},[268,2538,1068],{"class":706},[268,2540,693],{"class":689},[268,2542,712],{"class":689},[268,2544,693],{"class":689},[268,2546,735],{"class":696},[268,2548,693],{"class":689},[268,2550,701],{"class":689},[268,2552,693],{"class":689},[268,2554,744],{"class":706},[268,2556,693],{"class":689},[268,2558,712],{"class":689},[268,2560,693],{"class":689},[268,2562,771],{"class":696},[268,2564,693],{"class":689},[268,2566,701],{"class":689},[268,2568,693],{"class":689},[268,2570,2571],{"class":706},"Retrieve data from table",[268,2573,693],{"class":689},[268,2575,712],{"class":689},[268,2577,693],{"class":689},[268,2579,1110],{"class":696},[268,2581,693],{"class":689},[268,2583,1115],{"class":689},[268,2585,693],{"class":689},[268,2587,1120],{"class":696},[268,2589,693],{"class":689},[268,2591,701],{"class":689},[268,2593,984],{"class":689},[268,2595,712],{"class":689},[268,2597,693],{"class":689},[268,2599,1133],{"class":696},[268,2601,693],{"class":689},[268,2603,701],{"class":689},[268,2605,984],{"class":689},[268,2607,712],{"class":689},[268,2609,693],{"class":689},[268,2611,1146],{"class":696},[268,2613,693],{"class":689},[268,2615,927],{"class":689},[268,2617,693],{"class":689},[268,2619,1155],{"class":696},[268,2621,693],{"class":689},[268,2623,701],{"class":689},[268,2625,984],{"class":689},[268,2627,712],{"class":689},[268,2629,693],{"class":689},[268,2631,1168],{"class":696},[268,2633,693],{"class":689},[268,2635,701],{"class":689},[268,2637,984],{"class":689},[268,2639,712],{"class":689},[268,2641,693],{"class":689},[268,2643,788],{"class":696},[268,2645,693],{"class":689},[268,2647,701],{"class":689},[268,2649,2650],{"class":795},"580",[268,2652,712],{"class":689},[268,2654,693],{"class":689},[268,2656,803],{"class":696},[268,2658,693],{"class":689},[268,2660,701],{"class":689},[268,2662,2300],{"class":795},[268,2664,712],{"class":689},[268,2666,693],{"class":689},[268,2668,817],{"class":696},[268,2670,693],{"class":689},[268,2672,822],{"class":689},[268,2674,693],{"class":689},[268,2676,2677],{"class":706},"079031046156b6a0",[268,2679,693],{"class":689},[268,2681,832],{"class":689},[268,2683,693],{"class":689},[268,2685,521],{"class":696},[268,2687,693],{"class":689},[268,2689,701],{"class":689},[268,2691,693],{"class":689},[268,2693,2677],{"class":706},[268,2695,693],{"class":689},[268,2697,712],{"class":689},[268,2699,693],{"class":689},[268,2701,717],{"class":696},[268,2703,693],{"class":689},[268,2705,701],{"class":689},[268,2707,693],{"class":689},[268,2709,1247],{"class":706},[268,2711,693],{"class":689},[268,2713,712],{"class":689},[268,2715,693],{"class":689},[268,2717,735],{"class":696},[268,2719,693],{"class":689},[268,2721,701],{"class":689},[268,2723,693],{"class":689},[268,2725,744],{"class":706},[268,2727,693],{"class":689},[268,2729,712],{"class":689},[268,2731,693],{"class":689},[268,2733,771],{"class":696},[268,2735,693],{"class":689},[268,2737,701],{"class":689},[268,2739,984],{"class":689},[268,2741,712],{"class":689},[268,2743,693],{"class":689},[268,2745,1284],{"class":696},[268,2747,693],{"class":689},[268,2749,701],{"class":689},[268,2751,693],{"class":689},[268,2753,1168],{"class":706},[268,2755,693],{"class":689},[268,2757,712],{"class":689},[268,2759,693],{"class":689},[268,2761,1301],{"class":696},[268,2763,693],{"class":689},[268,2765,701],{"class":689},[268,2767,693],{"class":689},[268,2769,1310],{"class":706},[268,2771,693],{"class":689},[268,2773,712],{"class":689},[268,2775,693],{"class":689},[268,2777,1319],{"class":696},[268,2779,693],{"class":689},[268,2781,701],{"class":689},[268,2783,693],{"class":689},[268,2785,1328],{"class":706},[268,2787,693],{"class":689},[268,2789,712],{"class":689},[268,2791,693],{"class":689},[268,2793,1337],{"class":696},[268,2795,693],{"class":689},[268,2797,701],{"class":689},[268,2799,693],{"class":689},[268,2801,1346],{"class":706},[268,2803,693],{"class":689},[268,2805,712],{"class":689},[268,2807,693],{"class":689},[268,2809,1247],{"class":696},[268,2811,693],{"class":689},[268,2813,701],{"class":689},[268,2815,693],{"class":689},[268,2817,2818],{"class":706},"SELECT * FROM weather_data;",[268,2820,1367],{"class":1366},[268,2822,693],{"class":689},[268,2824,712],{"class":689},[268,2826,693],{"class":689},[268,2828,1401],{"class":696},[268,2830,693],{"class":689},[268,2832,701],{"class":689},[268,2834,693],{"class":689},[268,2836,1410],{"class":706},[268,2838,693],{"class":689},[268,2840,712],{"class":689},[268,2842,693],{"class":689},[268,2844,788],{"class":696},[268,2846,693],{"class":689},[268,2848,701],{"class":689},[268,2850,1425],{"class":795},[268,2852,712],{"class":689},[268,2854,693],{"class":689},[268,2856,803],{"class":696},[268,2858,693],{"class":689},[268,2860,701],{"class":689},[268,2862,2300],{"class":795},[268,2864,712],{"class":689},[268,2866,693],{"class":689},[268,2868,817],{"class":696},[268,2870,693],{"class":689},[268,2872,822],{"class":689},[268,2874,693],{"class":689},[268,2876,2209],{"class":706},[268,2878,693],{"class":689},[268,2880,832],{"class":689},[268,2882,693],{"class":689},[268,2884,521],{"class":696},[268,2886,693],{"class":689},[268,2888,701],{"class":689},[268,2890,693],{"class":689},[268,2892,2893],{"class":706},"eb38532de73213cf",[268,2895,693],{"class":689},[268,2897,712],{"class":689},[268,2899,693],{"class":689},[268,2901,717],{"class":696},[268,2903,693],{"class":689},[268,2905,701],{"class":689},[268,2907,693],{"class":689},[268,2909,726],{"class":706},[268,2911,693],{"class":689},[268,2913,712],{"class":689},[268,2915,693],{"class":689},[268,2917,735],{"class":696},[268,2919,693],{"class":689},[268,2921,701],{"class":689},[268,2923,693],{"class":689},[268,2925,744],{"class":706},[268,2927,693],{"class":689},[268,2929,712],{"class":689},[268,2931,693],{"class":689},[268,2933,753],{"class":696},[268,2935,693],{"class":689},[268,2937,701],{"class":689},[268,2939,693],{"class":689},[268,2941,762],{"class":706},[268,2943,693],{"class":689},[268,2945,712],{"class":689},[268,2947,693],{"class":689},[268,2949,771],{"class":696},[268,2951,693],{"class":689},[268,2953,701],{"class":689},[268,2955,693],{"class":689},[268,2957,30],{"class":706},[268,2959,693],{"class":689},[268,2961,712],{"class":689},[268,2963,693],{"class":689},[268,2965,788],{"class":696},[268,2967,693],{"class":689},[268,2969,701],{"class":689},[268,2971,796],{"class":795},[268,2973,712],{"class":689},[268,2975,693],{"class":689},[268,2977,803],{"class":696},[268,2979,693],{"class":689},[268,2981,701],{"class":689},[268,2983,2984],{"class":795},"2080",[268,2986,712],{"class":689},[268,2988,693],{"class":689},[268,2990,817],{"class":696},[268,2992,693],{"class":689},[268,2994,822],{"class":689},[268,2996,693],{"class":689},[268,2998,2999],{"class":706},"281838d687cea172",[268,3001,693],{"class":689},[268,3003,832],{"class":689},[268,3005,693],{"class":689},[268,3007,521],{"class":696},[268,3009,693],{"class":689},[268,3011,701],{"class":689},[268,3013,693],{"class":689},[268,3015,2999],{"class":706},[268,3017,693],{"class":689},[268,3019,712],{"class":689},[268,3021,693],{"class":689},[268,3023,717],{"class":696},[268,3025,693],{"class":689},[268,3027,701],{"class":689},[268,3029,693],{"class":689},[268,3031,861],{"class":706},[268,3033,693],{"class":689},[268,3035,712],{"class":689},[268,3037,693],{"class":689},[268,3039,735],{"class":696},[268,3041,693],{"class":689},[268,3043,701],{"class":689},[268,3045,693],{"class":689},[268,3047,744],{"class":706},[268,3049,693],{"class":689},[268,3051,712],{"class":689},[268,3053,693],{"class":689},[268,3055,771],{"class":696},[268,3057,693],{"class":689},[268,3059,701],{"class":689},[268,3061,693],{"class":689},[268,3063,3064],{"class":706},"debug 4",[268,3066,693],{"class":689},[268,3068,712],{"class":689},[268,3070,693],{"class":689},[268,3072,903],{"class":696},[268,3074,693],{"class":689},[268,3076,908],{"class":689},[268,3078,693],{"class":689},[268,3080,913],{"class":696},[268,3082,693],{"class":689},[268,3084,908],{"class":689},[268,3086,693],{"class":689},[268,3088,922],{"class":696},[268,3090,693],{"class":689},[268,3092,927],{"class":689},[268,3094,693],{"class":689},[268,3096,932],{"class":696},[268,3098,693],{"class":689},[268,3100,927],{"class":689},[268,3102,693],{"class":689},[268,3104,941],{"class":696},[268,3106,693],{"class":689},[268,3108,701],{"class":689},[268,3110,693],{"class":689},[268,3112,950],{"class":706},[268,3114,693],{"class":689},[268,3116,712],{"class":689},[268,3118,693],{"class":689},[268,3120,959],{"class":696},[268,3122,693],{"class":689},[268,3124,701],{"class":689},[268,3126,693],{"class":689},[268,3128,968],{"class":706},[268,3130,693],{"class":689},[268,3132,712],{"class":689},[268,3134,693],{"class":689},[268,3136,977],{"class":696},[268,3138,693],{"class":689},[268,3140,701],{"class":689},[268,3142,984],{"class":689},[268,3144,712],{"class":689},[268,3146,693],{"class":689},[268,3148,991],{"class":696},[268,3150,693],{"class":689},[268,3152,701],{"class":689},[268,3154,693],{"class":689},[268,3156,1000],{"class":706},[268,3158,693],{"class":689},[268,3160,712],{"class":689},[268,3162,693],{"class":689},[268,3164,788],{"class":696},[268,3166,693],{"class":689},[268,3168,701],{"class":689},[268,3170,2487],{"class":795},[268,3172,712],{"class":689},[268,3174,693],{"class":689},[268,3176,803],{"class":696},[268,3178,693],{"class":689},[268,3180,701],{"class":689},[268,3182,2984],{"class":795},[268,3184,712],{"class":689},[268,3186,693],{"class":689},[268,3188,817],{"class":696},[268,3190,693],{"class":689},[268,3192,1038],{"class":689},[268,3194,693],{"class":689},[268,3196,521],{"class":696},[268,3198,693],{"class":689},[268,3200,701],{"class":689},[268,3202,693],{"class":689},[268,3204,3205],{"class":706},"d4dfbbac635e8a3f",[268,3207,693],{"class":689},[268,3209,712],{"class":689},[268,3211,693],{"class":689},[268,3213,717],{"class":696},[268,3215,693],{"class":689},[268,3217,701],{"class":689},[268,3219,693],{"class":689},[268,3221,1068],{"class":706},[268,3223,693],{"class":689},[268,3225,712],{"class":689},[268,3227,693],{"class":689},[268,3229,735],{"class":696},[268,3231,693],{"class":689},[268,3233,701],{"class":689},[268,3235,693],{"class":689},[268,3237,744],{"class":706},[268,3239,693],{"class":689},[268,3241,712],{"class":689},[268,3243,693],{"class":689},[268,3245,771],{"class":696},[268,3247,693],{"class":689},[268,3249,701],{"class":689},[268,3251,693],{"class":689},[268,3253,3254],{"class":706},"Drop the table if it exist",[268,3256,693],{"class":689},[268,3258,712],{"class":689},[268,3260,693],{"class":689},[268,3262,1110],{"class":696},[268,3264,693],{"class":689},[268,3266,1115],{"class":689},[268,3268,693],{"class":689},[268,3270,1120],{"class":696},[268,3272,693],{"class":689},[268,3274,701],{"class":689},[268,3276,984],{"class":689},[268,3278,712],{"class":689},[268,3280,693],{"class":689},[268,3282,1133],{"class":696},[268,3284,693],{"class":689},[268,3286,701],{"class":689},[268,3288,984],{"class":689},[268,3290,712],{"class":689},[268,3292,693],{"class":689},[268,3294,1146],{"class":696},[268,3296,693],{"class":689},[268,3298,927],{"class":689},[268,3300,693],{"class":689},[268,3302,1155],{"class":696},[268,3304,693],{"class":689},[268,3306,701],{"class":689},[268,3308,984],{"class":689},[268,3310,712],{"class":689},[268,3312,693],{"class":689},[268,3314,1168],{"class":696},[268,3316,693],{"class":689},[268,3318,701],{"class":689},[268,3320,984],{"class":689},[268,3322,712],{"class":689},[268,3324,693],{"class":689},[268,3326,788],{"class":696},[268,3328,693],{"class":689},[268,3330,701],{"class":689},[268,3332,2650],{"class":795},[268,3334,712],{"class":689},[268,3336,693],{"class":689},[268,3338,803],{"class":696},[268,3340,693],{"class":689},[268,3342,701],{"class":689},[268,3344,2984],{"class":795},[268,3346,712],{"class":689},[268,3348,693],{"class":689},[268,3350,817],{"class":696},[268,3352,693],{"class":689},[268,3354,822],{"class":689},[268,3356,693],{"class":689},[268,3358,3359],{"class":706},"4442ad0bbc50a256",[268,3361,693],{"class":689},[268,3363,832],{"class":689},[268,3365,693],{"class":689},[268,3367,521],{"class":696},[268,3369,693],{"class":689},[268,3371,701],{"class":689},[268,3373,693],{"class":689},[268,3375,3359],{"class":706},[268,3377,693],{"class":689},[268,3379,712],{"class":689},[268,3381,693],{"class":689},[268,3383,717],{"class":696},[268,3385,693],{"class":689},[268,3387,701],{"class":689},[268,3389,693],{"class":689},[268,3391,1247],{"class":706},[268,3393,693],{"class":689},[268,3395,712],{"class":689},[268,3397,693],{"class":689},[268,3399,735],{"class":696},[268,3401,693],{"class":689},[268,3403,701],{"class":689},[268,3405,693],{"class":689},[268,3407,744],{"class":706},[268,3409,693],{"class":689},[268,3411,712],{"class":689},[268,3413,693],{"class":689},[268,3415,771],{"class":696},[268,3417,693],{"class":689},[268,3419,701],{"class":689},[268,3421,984],{"class":689},[268,3423,712],{"class":689},[268,3425,693],{"class":689},[268,3427,1284],{"class":696},[268,3429,693],{"class":689},[268,3431,701],{"class":689},[268,3433,693],{"class":689},[268,3435,1168],{"class":706},[268,3437,693],{"class":689},[268,3439,712],{"class":689},[268,3441,693],{"class":689},[268,3443,1301],{"class":696},[268,3445,693],{"class":689},[268,3447,701],{"class":689},[268,3449,693],{"class":689},[268,3451,1310],{"class":706},[268,3453,693],{"class":689},[268,3455,712],{"class":689},[268,3457,693],{"class":689},[268,3459,1319],{"class":696},[268,3461,693],{"class":689},[268,3463,701],{"class":689},[268,3465,693],{"class":689},[268,3467,1328],{"class":706},[268,3469,693],{"class":689},[268,3471,712],{"class":689},[268,3473,693],{"class":689},[268,3475,1337],{"class":696},[268,3477,693],{"class":689},[268,3479,701],{"class":689},[268,3481,693],{"class":689},[268,3483,1346],{"class":706},[268,3485,693],{"class":689},[268,3487,712],{"class":689},[268,3489,693],{"class":689},[268,3491,1247],{"class":696},[268,3493,693],{"class":689},[268,3495,701],{"class":689},[268,3497,693],{"class":689},[268,3499,3500],{"class":706},"DROP TABLE IF EXISTS weather_data;",[268,3502,1367],{"class":1366},[268,3504,693],{"class":689},[268,3506,712],{"class":689},[268,3508,693],{"class":689},[268,3510,1401],{"class":696},[268,3512,693],{"class":689},[268,3514,701],{"class":689},[268,3516,693],{"class":689},[268,3518,1410],{"class":706},[268,3520,693],{"class":689},[268,3522,712],{"class":689},[268,3524,693],{"class":689},[268,3526,788],{"class":696},[268,3528,693],{"class":689},[268,3530,701],{"class":689},[268,3532,1425],{"class":795},[268,3534,712],{"class":689},[268,3536,693],{"class":689},[268,3538,803],{"class":696},[268,3540,693],{"class":689},[268,3542,701],{"class":689},[268,3544,2984],{"class":795},[268,3546,712],{"class":689},[268,3548,693],{"class":689},[268,3550,817],{"class":696},[268,3552,693],{"class":689},[268,3554,822],{"class":689},[268,3556,693],{"class":689},[268,3558,2893],{"class":706},[268,3560,693],{"class":689},[268,3562,832],{"class":689},[268,3564,693],{"class":689},[268,3566,521],{"class":696},[268,3568,693],{"class":689},[268,3570,701],{"class":689},[268,3572,693],{"class":689},[268,3574,3575],{"class":706},"668ed2021704c543",[268,3577,693],{"class":689},[268,3579,712],{"class":689},[268,3581,693],{"class":689},[268,3583,717],{"class":696},[268,3585,693],{"class":689},[268,3587,701],{"class":689},[268,3589,693],{"class":689},[268,3591,726],{"class":706},[268,3593,693],{"class":689},[268,3595,712],{"class":689},[268,3597,693],{"class":689},[268,3599,735],{"class":696},[268,3601,693],{"class":689},[268,3603,701],{"class":689},[268,3605,693],{"class":689},[268,3607,744],{"class":706},[268,3609,693],{"class":689},[268,3611,712],{"class":689},[268,3613,693],{"class":689},[268,3615,753],{"class":696},[268,3617,693],{"class":689},[268,3619,701],{"class":689},[268,3621,693],{"class":689},[268,3623,762],{"class":706},[268,3625,693],{"class":689},[268,3627,712],{"class":689},[268,3629,693],{"class":689},[268,3631,771],{"class":696},[268,3633,693],{"class":689},[268,3635,701],{"class":689},[268,3637,693],{"class":689},[268,3639,30],{"class":706},[268,3641,693],{"class":689},[268,3643,712],{"class":689},[268,3645,693],{"class":689},[268,3647,788],{"class":696},[268,3649,693],{"class":689},[268,3651,701],{"class":689},[268,3653,796],{"class":795},[268,3655,712],{"class":689},[268,3657,693],{"class":689},[268,3659,803],{"class":696},[268,3661,693],{"class":689},[268,3663,701],{"class":689},[268,3665,3666],{"class":795},"1940",[268,3668,712],{"class":689},[268,3670,693],{"class":689},[268,3672,817],{"class":696},[268,3674,693],{"class":689},[268,3676,822],{"class":689},[268,3678,693],{"class":689},[268,3680,3681],{"class":706},"666152e3362a25d5",[268,3683,693],{"class":689},[268,3685,832],{"class":689},[268,3687,693],{"class":689},[268,3689,521],{"class":696},[268,3691,693],{"class":689},[268,3693,701],{"class":689},[268,3695,693],{"class":689},[268,3697,3681],{"class":706},[268,3699,693],{"class":689},[268,3701,712],{"class":689},[268,3703,693],{"class":689},[268,3705,717],{"class":696},[268,3707,693],{"class":689},[268,3709,701],{"class":689},[268,3711,693],{"class":689},[268,3713,861],{"class":706},[268,3715,693],{"class":689},[268,3717,712],{"class":689},[268,3719,693],{"class":689},[268,3721,735],{"class":696},[268,3723,693],{"class":689},[268,3725,701],{"class":689},[268,3727,693],{"class":689},[268,3729,744],{"class":706},[268,3731,693],{"class":689},[268,3733,712],{"class":689},[268,3735,693],{"class":689},[268,3737,771],{"class":696},[268,3739,693],{"class":689},[268,3741,701],{"class":689},[268,3743,693],{"class":689},[268,3745,3746],{"class":706},"debug 5",[268,3748,693],{"class":689},[268,3750,712],{"class":689},[268,3752,693],{"class":689},[268,3754,903],{"class":696},[268,3756,693],{"class":689},[268,3758,908],{"class":689},[268,3760,693],{"class":689},[268,3762,913],{"class":696},[268,3764,693],{"class":689},[268,3766,908],{"class":689},[268,3768,693],{"class":689},[268,3770,922],{"class":696},[268,3772,693],{"class":689},[268,3774,927],{"class":689},[268,3776,693],{"class":689},[268,3778,932],{"class":696},[268,3780,693],{"class":689},[268,3782,927],{"class":689},[268,3784,693],{"class":689},[268,3786,941],{"class":696},[268,3788,693],{"class":689},[268,3790,701],{"class":689},[268,3792,693],{"class":689},[268,3794,950],{"class":706},[268,3796,693],{"class":689},[268,3798,712],{"class":689},[268,3800,693],{"class":689},[268,3802,959],{"class":696},[268,3804,693],{"class":689},[268,3806,701],{"class":689},[268,3808,693],{"class":689},[268,3810,968],{"class":706},[268,3812,693],{"class":689},[268,3814,712],{"class":689},[268,3816,693],{"class":689},[268,3818,977],{"class":696},[268,3820,693],{"class":689},[268,3822,701],{"class":689},[268,3824,984],{"class":689},[268,3826,712],{"class":689},[268,3828,693],{"class":689},[268,3830,991],{"class":696},[268,3832,693],{"class":689},[268,3834,701],{"class":689},[268,3836,693],{"class":689},[268,3838,1000],{"class":706},[268,3840,693],{"class":689},[268,3842,712],{"class":689},[268,3844,693],{"class":689},[268,3846,788],{"class":696},[268,3848,693],{"class":689},[268,3850,701],{"class":689},[268,3852,2487],{"class":795},[268,3854,712],{"class":689},[268,3856,693],{"class":689},[268,3858,803],{"class":696},[268,3860,693],{"class":689},[268,3862,701],{"class":689},[268,3864,3666],{"class":795},[268,3866,712],{"class":689},[268,3868,693],{"class":689},[268,3870,817],{"class":696},[268,3872,693],{"class":689},[268,3874,1038],{"class":689},[268,3876,693],{"class":689},[268,3878,521],{"class":696},[268,3880,693],{"class":689},[268,3882,701],{"class":689},[268,3884,693],{"class":689},[268,3886,3887],{"class":706},"fbcbad8039d05e8e",[268,3889,693],{"class":689},[268,3891,712],{"class":689},[268,3893,693],{"class":689},[268,3895,717],{"class":696},[268,3897,693],{"class":689},[268,3899,701],{"class":689},[268,3901,693],{"class":689},[268,3903,1068],{"class":706},[268,3905,693],{"class":689},[268,3907,712],{"class":689},[268,3909,693],{"class":689},[268,3911,735],{"class":696},[268,3913,693],{"class":689},[268,3915,701],{"class":689},[268,3917,693],{"class":689},[268,3919,744],{"class":706},[268,3921,693],{"class":689},[268,3923,712],{"class":689},[268,3925,693],{"class":689},[268,3927,771],{"class":696},[268,3929,693],{"class":689},[268,3931,701],{"class":689},[268,3933,693],{"class":689},[268,3935,3936],{"class":706},"Delete data from the table",[268,3938,693],{"class":689},[268,3940,712],{"class":689},[268,3942,693],{"class":689},[268,3944,1110],{"class":696},[268,3946,693],{"class":689},[268,3948,1115],{"class":689},[268,3950,693],{"class":689},[268,3952,1120],{"class":696},[268,3954,693],{"class":689},[268,3956,701],{"class":689},[268,3958,984],{"class":689},[268,3960,712],{"class":689},[268,3962,693],{"class":689},[268,3964,1133],{"class":696},[268,3966,693],{"class":689},[268,3968,701],{"class":689},[268,3970,984],{"class":689},[268,3972,712],{"class":689},[268,3974,693],{"class":689},[268,3976,1146],{"class":696},[268,3978,693],{"class":689},[268,3980,927],{"class":689},[268,3982,693],{"class":689},[268,3984,1155],{"class":696},[268,3986,693],{"class":689},[268,3988,701],{"class":689},[268,3990,984],{"class":689},[268,3992,712],{"class":689},[268,3994,693],{"class":689},[268,3996,1168],{"class":696},[268,3998,693],{"class":689},[268,4000,701],{"class":689},[268,4002,984],{"class":689},[268,4004,712],{"class":689},[268,4006,693],{"class":689},[268,4008,788],{"class":696},[268,4010,693],{"class":689},[268,4012,701],{"class":689},[268,4014,4015],{"class":795},"570",[268,4017,712],{"class":689},[268,4019,693],{"class":689},[268,4021,803],{"class":696},[268,4023,693],{"class":689},[268,4025,701],{"class":689},[268,4027,3666],{"class":795},[268,4029,712],{"class":689},[268,4031,693],{"class":689},[268,4033,817],{"class":696},[268,4035,693],{"class":689},[268,4037,822],{"class":689},[268,4039,693],{"class":689},[268,4041,4042],{"class":706},"aa929706ed813892",[268,4044,693],{"class":689},[268,4046,832],{"class":689},[268,4048,693],{"class":689},[268,4050,521],{"class":696},[268,4052,693],{"class":689},[268,4054,701],{"class":689},[268,4056,693],{"class":689},[268,4058,4042],{"class":706},[268,4060,693],{"class":689},[268,4062,712],{"class":689},[268,4064,693],{"class":689},[268,4066,717],{"class":696},[268,4068,693],{"class":689},[268,4070,701],{"class":689},[268,4072,693],{"class":689},[268,4074,1247],{"class":706},[268,4076,693],{"class":689},[268,4078,712],{"class":689},[268,4080,693],{"class":689},[268,4082,735],{"class":696},[268,4084,693],{"class":689},[268,4086,701],{"class":689},[268,4088,693],{"class":689},[268,4090,744],{"class":706},[268,4092,693],{"class":689},[268,4094,712],{"class":689},[268,4096,693],{"class":689},[268,4098,771],{"class":696},[268,4100,693],{"class":689},[268,4102,701],{"class":689},[268,4104,984],{"class":689},[268,4106,712],{"class":689},[268,4108,693],{"class":689},[268,4110,1284],{"class":696},[268,4112,693],{"class":689},[268,4114,701],{"class":689},[268,4116,693],{"class":689},[268,4118,1168],{"class":706},[268,4120,693],{"class":689},[268,4122,712],{"class":689},[268,4124,693],{"class":689},[268,4126,1301],{"class":696},[268,4128,693],{"class":689},[268,4130,701],{"class":689},[268,4132,693],{"class":689},[268,4134,1310],{"class":706},[268,4136,693],{"class":689},[268,4138,712],{"class":689},[268,4140,693],{"class":689},[268,4142,1319],{"class":696},[268,4144,693],{"class":689},[268,4146,701],{"class":689},[268,4148,693],{"class":689},[268,4150,1328],{"class":706},[268,4152,693],{"class":689},[268,4154,712],{"class":689},[268,4156,693],{"class":689},[268,4158,1337],{"class":696},[268,4160,693],{"class":689},[268,4162,701],{"class":689},[268,4164,693],{"class":689},[268,4166,1346],{"class":706},[268,4168,693],{"class":689},[268,4170,712],{"class":689},[268,4172,693],{"class":689},[268,4174,1247],{"class":696},[268,4176,693],{"class":689},[268,4178,701],{"class":689},[268,4180,693],{"class":689},[268,4182,4183],{"class":706},"DELETE FROM weather_data",[268,4185,1367],{"class":1366},[268,4187,4188],{"class":706},"WHERE tem > 15",[268,4190,1367],{"class":1366},[268,4192,4193],{"class":706},"AND location = 'New York';",[268,4195,693],{"class":689},[268,4197,712],{"class":689},[268,4199,693],{"class":689},[268,4201,1401],{"class":696},[268,4203,693],{"class":689},[268,4205,701],{"class":689},[268,4207,693],{"class":689},[268,4209,1410],{"class":706},[268,4211,693],{"class":689},[268,4213,712],{"class":689},[268,4215,693],{"class":689},[268,4217,788],{"class":696},[268,4219,693],{"class":689},[268,4221,701],{"class":689},[268,4223,1425],{"class":795},[268,4225,712],{"class":689},[268,4227,693],{"class":689},[268,4229,803],{"class":696},[268,4231,693],{"class":689},[268,4233,701],{"class":689},[268,4235,3666],{"class":795},[268,4237,712],{"class":689},[268,4239,693],{"class":689},[268,4241,817],{"class":696},[268,4243,693],{"class":689},[268,4245,822],{"class":689},[268,4247,693],{"class":689},[268,4249,3575],{"class":706},[268,4251,693],{"class":689},[268,4253,832],{"class":689},[268,4255,693],{"class":689},[268,4257,521],{"class":696},[268,4259,693],{"class":689},[268,4261,701],{"class":689},[268,4263,693],{"class":689},[268,4265,4266],{"class":706},"9c2befca464db660",[268,4268,693],{"class":689},[268,4270,712],{"class":689},[268,4272,693],{"class":689},[268,4274,717],{"class":696},[268,4276,693],{"class":689},[268,4278,701],{"class":689},[268,4280,693],{"class":689},[268,4282,726],{"class":706},[268,4284,693],{"class":689},[268,4286,712],{"class":689},[268,4288,693],{"class":689},[268,4290,735],{"class":696},[268,4292,693],{"class":689},[268,4294,701],{"class":689},[268,4296,693],{"class":689},[268,4298,744],{"class":706},[268,4300,693],{"class":689},[268,4302,712],{"class":689},[268,4304,693],{"class":689},[268,4306,753],{"class":696},[268,4308,693],{"class":689},[268,4310,701],{"class":689},[268,4312,693],{"class":689},[268,4314,762],{"class":706},[268,4316,693],{"class":689},[268,4318,712],{"class":689},[268,4320,693],{"class":689},[268,4322,771],{"class":696},[268,4324,693],{"class":689},[268,4326,701],{"class":689},[268,4328,693],{"class":689},[268,4330,30],{"class":706},[268,4332,693],{"class":689},[268,4334,712],{"class":689},[268,4336,693],{"class":689},[268,4338,788],{"class":696},[268,4340,693],{"class":689},[268,4342,701],{"class":689},[268,4344,796],{"class":795},[268,4346,712],{"class":689},[268,4348,693],{"class":689},[268,4350,803],{"class":696},[268,4352,693],{"class":689},[268,4354,701],{"class":689},[268,4356,4357],{"class":795},"2020",[268,4359,712],{"class":689},[268,4361,693],{"class":689},[268,4363,817],{"class":696},[268,4365,693],{"class":689},[268,4367,822],{"class":689},[268,4369,693],{"class":689},[268,4371,4372],{"class":706},"d28cb3472c5fc357",[268,4374,693],{"class":689},[268,4376,832],{"class":689},[268,4378,693],{"class":689},[268,4380,521],{"class":696},[268,4382,693],{"class":689},[268,4384,701],{"class":689},[268,4386,693],{"class":689},[268,4388,4372],{"class":706},[268,4390,693],{"class":689},[268,4392,712],{"class":689},[268,4394,693],{"class":689},[268,4396,717],{"class":696},[268,4398,693],{"class":689},[268,4400,701],{"class":689},[268,4402,693],{"class":689},[268,4404,861],{"class":706},[268,4406,693],{"class":689},[268,4408,712],{"class":689},[268,4410,693],{"class":689},[268,4412,735],{"class":696},[268,4414,693],{"class":689},[268,4416,701],{"class":689},[268,4418,693],{"class":689},[268,4420,744],{"class":706},[268,4422,693],{"class":689},[268,4424,712],{"class":689},[268,4426,693],{"class":689},[268,4428,771],{"class":696},[268,4430,693],{"class":689},[268,4432,701],{"class":689},[268,4434,693],{"class":689},[268,4436,4437],{"class":706},"debug 6",[268,4439,693],{"class":689},[268,4441,712],{"class":689},[268,4443,693],{"class":689},[268,4445,903],{"class":696},[268,4447,693],{"class":689},[268,4449,908],{"class":689},[268,4451,693],{"class":689},[268,4453,913],{"class":696},[268,4455,693],{"class":689},[268,4457,908],{"class":689},[268,4459,693],{"class":689},[268,4461,922],{"class":696},[268,4463,693],{"class":689},[268,4465,927],{"class":689},[268,4467,693],{"class":689},[268,4469,932],{"class":696},[268,4471,693],{"class":689},[268,4473,927],{"class":689},[268,4475,693],{"class":689},[268,4477,941],{"class":696},[268,4479,693],{"class":689},[268,4481,701],{"class":689},[268,4483,693],{"class":689},[268,4485,950],{"class":706},[268,4487,693],{"class":689},[268,4489,712],{"class":689},[268,4491,693],{"class":689},[268,4493,959],{"class":696},[268,4495,693],{"class":689},[268,4497,701],{"class":689},[268,4499,693],{"class":689},[268,4501,968],{"class":706},[268,4503,693],{"class":689},[268,4505,712],{"class":689},[268,4507,693],{"class":689},[268,4509,977],{"class":696},[268,4511,693],{"class":689},[268,4513,701],{"class":689},[268,4515,984],{"class":689},[268,4517,712],{"class":689},[268,4519,693],{"class":689},[268,4521,991],{"class":696},[268,4523,693],{"class":689},[268,4525,701],{"class":689},[268,4527,693],{"class":689},[268,4529,1000],{"class":706},[268,4531,693],{"class":689},[268,4533,712],{"class":689},[268,4535,693],{"class":689},[268,4537,788],{"class":696},[268,4539,693],{"class":689},[268,4541,701],{"class":689},[268,4543,2487],{"class":795},[268,4545,712],{"class":689},[268,4547,693],{"class":689},[268,4549,803],{"class":696},[268,4551,693],{"class":689},[268,4553,701],{"class":689},[268,4555,4357],{"class":795},[268,4557,712],{"class":689},[268,4559,693],{"class":689},[268,4561,817],{"class":696},[268,4563,693],{"class":689},[268,4565,1038],{"class":689},[268,4567,693],{"class":689},[268,4569,521],{"class":696},[268,4571,693],{"class":689},[268,4573,701],{"class":689},[268,4575,693],{"class":689},[268,4577,4578],{"class":706},"49297922b9784f8e",[268,4580,693],{"class":689},[268,4582,712],{"class":689},[268,4584,693],{"class":689},[268,4586,717],{"class":696},[268,4588,693],{"class":689},[268,4590,701],{"class":689},[268,4592,693],{"class":689},[268,4594,1068],{"class":706},[268,4596,693],{"class":689},[268,4598,712],{"class":689},[268,4600,693],{"class":689},[268,4602,735],{"class":696},[268,4604,693],{"class":689},[268,4606,701],{"class":689},[268,4608,693],{"class":689},[268,4610,744],{"class":706},[268,4612,693],{"class":689},[268,4614,712],{"class":689},[268,4616,693],{"class":689},[268,4618,771],{"class":696},[268,4620,693],{"class":689},[268,4622,701],{"class":689},[268,4624,693],{"class":689},[268,4626,4627],{"class":706},"Update data from the table",[268,4629,693],{"class":689},[268,4631,712],{"class":689},[268,4633,693],{"class":689},[268,4635,1110],{"class":696},[268,4637,693],{"class":689},[268,4639,1842],{"class":689},[268,4641,693],{"class":689},[268,4643,14],{"class":1847},[268,4645,693],{"class":689},[268,4647,701],{"class":689},[268,4649,693],{"class":689},[268,4651,1856],{"class":706},[268,4653,693],{"class":689},[268,4655,1861],{"class":689},[268,4657,693],{"class":689},[268,4659,1120],{"class":696},[268,4661,693],{"class":689},[268,4663,701],{"class":689},[268,4665,984],{"class":689},[268,4667,712],{"class":689},[268,4669,693],{"class":689},[268,4671,1133],{"class":696},[268,4673,693],{"class":689},[268,4675,701],{"class":689},[268,4677,984],{"class":689},[268,4679,712],{"class":689},[268,4681,693],{"class":689},[268,4683,1146],{"class":696},[268,4685,693],{"class":689},[268,4687,927],{"class":689},[268,4689,693],{"class":689},[268,4691,1155],{"class":696},[268,4693,693],{"class":689},[268,4695,701],{"class":689},[268,4697,984],{"class":689},[268,4699,712],{"class":689},[268,4701,693],{"class":689},[268,4703,1168],{"class":696},[268,4705,693],{"class":689},[268,4707,701],{"class":689},[268,4709,984],{"class":689},[268,4711,712],{"class":689},[268,4713,693],{"class":689},[268,4715,1856],{"class":696},[268,4717,693],{"class":689},[268,4719,701],{"class":689},[268,4721,693],{"class":689},[268,4723,4724],{"class":706},"10",[268,4726,693],{"class":689},[268,4728,712],{"class":689},[268,4730,693],{"class":689},[268,4732,1939],{"class":696},[268,4734,693],{"class":689},[268,4736,701],{"class":689},[268,4738,693],{"class":689},[268,4740,4741],{"class":706},"num",[268,4743,693],{"class":689},[268,4745,712],{"class":689},[268,4747,693],{"class":689},[268,4749,788],{"class":696},[268,4751,693],{"class":689},[268,4753,701],{"class":689},[268,4755,4015],{"class":795},[268,4757,712],{"class":689},[268,4759,693],{"class":689},[268,4761,803],{"class":696},[268,4763,693],{"class":689},[268,4765,701],{"class":689},[268,4767,4357],{"class":795},[268,4769,712],{"class":689},[268,4771,693],{"class":689},[268,4773,817],{"class":696},[268,4775,693],{"class":689},[268,4777,822],{"class":689},[268,4779,693],{"class":689},[268,4781,4782],{"class":706},"bbae98e54824b222",[268,4784,693],{"class":689},[268,4786,832],{"class":689},[268,4788,693],{"class":689},[268,4790,521],{"class":696},[268,4792,693],{"class":689},[268,4794,701],{"class":689},[268,4796,693],{"class":689},[268,4798,4782],{"class":706},[268,4800,693],{"class":689},[268,4802,712],{"class":689},[268,4804,693],{"class":689},[268,4806,717],{"class":696},[268,4808,693],{"class":689},[268,4810,701],{"class":689},[268,4812,693],{"class":689},[268,4814,1247],{"class":706},[268,4816,693],{"class":689},[268,4818,712],{"class":689},[268,4820,693],{"class":689},[268,4822,735],{"class":696},[268,4824,693],{"class":689},[268,4826,701],{"class":689},[268,4828,693],{"class":689},[268,4830,744],{"class":706},[268,4832,693],{"class":689},[268,4834,712],{"class":689},[268,4836,693],{"class":689},[268,4838,771],{"class":696},[268,4840,693],{"class":689},[268,4842,701],{"class":689},[268,4844,984],{"class":689},[268,4846,712],{"class":689},[268,4848,693],{"class":689},[268,4850,1284],{"class":696},[268,4852,693],{"class":689},[268,4854,701],{"class":689},[268,4856,693],{"class":689},[268,4858,1168],{"class":706},[268,4860,693],{"class":689},[268,4862,712],{"class":689},[268,4864,693],{"class":689},[268,4866,1301],{"class":696},[268,4868,693],{"class":689},[268,4870,701],{"class":689},[268,4872,693],{"class":689},[268,4874,1310],{"class":706},[268,4876,693],{"class":689},[268,4878,712],{"class":689},[268,4880,693],{"class":689},[268,4882,1319],{"class":696},[268,4884,693],{"class":689},[268,4886,701],{"class":689},[268,4888,693],{"class":689},[268,4890,1328],{"class":706},[268,4892,693],{"class":689},[268,4894,712],{"class":689},[268,4896,693],{"class":689},[268,4898,1337],{"class":696},[268,4900,693],{"class":689},[268,4902,701],{"class":689},[268,4904,693],{"class":689},[268,4906,1346],{"class":706},[268,4908,693],{"class":689},[268,4910,712],{"class":689},[268,4912,693],{"class":689},[268,4914,1247],{"class":696},[268,4916,693],{"class":689},[268,4918,701],{"class":689},[268,4920,693],{"class":689},[268,4922,4923],{"class":706},"UPDATE weather_data",[268,4925,1367],{"class":1366},[268,4927,4928],{"class":706},"SET tem = {{payload}}",[268,4930,1367],{"class":1366},[268,4932,4933],{"class":706},"WHERE id = 3",[268,4935,693],{"class":689},[268,4937,712],{"class":689},[268,4939,693],{"class":689},[268,4941,1401],{"class":696},[268,4943,693],{"class":689},[268,4945,701],{"class":689},[268,4947,693],{"class":689},[268,4949,1410],{"class":706},[268,4951,693],{"class":689},[268,4953,712],{"class":689},[268,4955,693],{"class":689},[268,4957,788],{"class":696},[268,4959,693],{"class":689},[268,4961,701],{"class":689},[268,4963,1425],{"class":795},[268,4965,712],{"class":689},[268,4967,693],{"class":689},[268,4969,803],{"class":696},[268,4971,693],{"class":689},[268,4973,701],{"class":689},[268,4975,4357],{"class":795},[268,4977,712],{"class":689},[268,4979,693],{"class":689},[268,4981,817],{"class":696},[268,4983,693],{"class":689},[268,4985,822],{"class":689},[268,4987,693],{"class":689},[268,4989,4266],{"class":706},[268,4991,693],{"class":689},[268,4993,832],{"class":689},[268,4995,693],{"class":689},[268,4997,521],{"class":696},[268,4999,693],{"class":689},[268,5001,701],{"class":689},[268,5003,693],{"class":689},[268,5005,762],{"class":706},[268,5007,693],{"class":689},[268,5009,712],{"class":689},[268,5011,693],{"class":689},[268,5013,717],{"class":696},[268,5015,693],{"class":689},[268,5017,701],{"class":689},[268,5019,693],{"class":689},[268,5021,5022],{"class":706},"MySQLdatabase",[268,5024,693],{"class":689},[268,5026,712],{"class":689},[268,5028,693],{"class":689},[268,5030,771],{"class":696},[268,5032,693],{"class":689},[268,5034,701],{"class":689},[268,5036,693],{"class":689},[268,5038,5039],{"class":706},"Mysql config",[268,5041,693],{"class":689},[268,5043,712],{"class":689},[268,5045,693],{"class":689},[268,5047,5048],{"class":696},"host",[268,5050,693],{"class":689},[268,5052,701],{"class":689},[268,5054,693],{"class":689},[268,5056,5057],{"class":706},"${HOST}",[268,5059,693],{"class":689},[268,5061,712],{"class":689},[268,5063,693],{"class":689},[268,5065,5066],{"class":696},"port",[268,5068,693],{"class":689},[268,5070,701],{"class":689},[268,5072,693],{"class":689},[268,5074,5075],{"class":706},"${PORT}",[268,5077,693],{"class":689},[268,5079,712],{"class":689},[268,5081,693],{"class":689},[268,5083,5084],{"class":696},"db",[268,5086,693],{"class":689},[268,5088,701],{"class":689},[268,5090,693],{"class":689},[268,5092,5093],{"class":706},"${DATABASE}",[268,5095,693],{"class":689},[268,5097,712],{"class":689},[268,5099,693],{"class":689},[268,5101,5102],{"class":696},"tz",[268,5104,693],{"class":689},[268,5106,701],{"class":689},[268,5108,693],{"class":689},[268,5110,5111],{"class":706},"+5:30",[268,5113,693],{"class":689},[268,5115,712],{"class":689},[268,5117,693],{"class":689},[268,5119,5120],{"class":696},"charset",[268,5122,693],{"class":689},[268,5124,701],{"class":689},[268,5126,693],{"class":689},[268,5128,5129],{"class":706},"UTF8",[268,5131,693],{"class":689},[268,5133,5134],{"class":689},"}]\n",[178,5136,5138],{"id":5137},"deploying-the-flow","Deploying the Flow",[211,5140,5141],{},[189,5142,5143],{},"To test the imported flows, you need to deploy them. To do that, click the deploy button at the top right corner.",[14,5145,5146],{},"After deploying the flow, you can test each operation, such as creating, deleting, updating, and executing other queries, by clicking the inject button. For debugging purposes, add debug nodes to the flow.",[14,5148,5149,5150,5154],{},"Additionally, if you want to explore the integration of other databases with Node-RED, you can refer to our ",[25,5151,5153],{"href":5152},"\u002Fdocs\u002Fnode-red\u002Fdatabase\u002F","database section"," in the Node-RED learning resources, where we cover databases such as PostgreSQL, MongoDB, InfluxDB, DynamoDB, and more.",[5156,5157,5158],"style",{},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html pre.shiki code .sMK4o, html code.shiki .sMK4o{--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF}html pre.shiki code .spNyl, html code.shiki .spNyl{--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA}html pre.shiki code .sfazB, html code.shiki .sfazB{--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D}html pre.shiki code .sbssI, html code.shiki .sbssI{--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C}html pre.shiki code .sTEyZ, html code.shiki .sTEyZ{--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8}html pre.shiki code .sBMFI, html code.shiki .sBMFI{--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B}",{"title":264,"searchDepth":289,"depth":289,"links":5160},[5161,5162,5163,5164],{"id":20,"depth":277,"text":21},{"id":34,"depth":277,"text":35},{"id":152,"depth":277,"text":153},{"id":169,"depth":277,"text":170,"children":5165},[5166,5167,5168,5169,5170,5171,5172,5173,5174],{"id":180,"depth":283,"text":181},{"id":208,"depth":283,"text":209},{"id":241,"depth":283,"text":242},{"id":324,"depth":283,"text":325},{"id":406,"depth":283,"text":407},{"id":509,"depth":283,"text":510},{"id":584,"depth":283,"text":585},{"id":637,"depth":283,"text":638},{"id":5137,"depth":283,"text":5138},"https:\u002F\u002Fgithub.com\u002FFlowFuse\u002Fwebsite\u002Fedit\u002Fmain\u002Fnuxt\u002Fcontent-guides\u002Fnode-red\u002Fdatabase\u002Fmysql.md","md",null,{"image":5179},"\u002Fdocs\u002Fnode-red\u002Fdatabase\u002Fimages\u002Ftimescaledb-with-node-red.png",50,true,"\u002Fdocs\u002Fnode-red\u002Fdatabase\u002Fmysql",{"title":5,"description":16},"docs\u002Fnode-red\u002Fdatabase\u002Fmysql","2026-09-08 11:02:51 +0200","h0Dt3wWPMDeUF5z65w6gIJDStFuqhlerWNWTDQg3Apk",{"id":5188,"extension":5189,"meta":5190,"sections":5191,"stem":5590,"__hash__":5591},"featureCatalog\u002Ffeature-catalog.yml","yml",{},[5192,5253,5354,5416,5493,5572],{"id":5193,"title":5194,"features":5195},"ai-automation","AI & Automation",[5196,5206,5216,5226,5232,5242,5248],{"id":5197,"title":5198,"description":5199,"docsLink":5200,"changelog":5201,"tiers":5205},"flowfuse-expert-ai","FlowFuse Expert AI","Build industrial apps with agents, and query the state of the factory with an agent. Adapt your current hardware and machines so agentic work can be done against them, without ripping and replacing what's already on the plant floor.","\u002Fdocs\u002Fuser\u002Fexpert\u002F",[5202],{"url":5203,"release":5204},"\u002Fchangelog\u002F2026\u002F02\u002Fff-expert-update-banner\u002F","2.28",{"edge":5181,"hub":5181,"fleet":5181},{"id":5207,"title":5208,"description":5209,"docsLink":5210,"changelog":5211,"subfeature":5181,"showOnPricing":5214,"tiers":5215},"flowfuse-expert-support-mode","Support Mode","Chat-based assistance for FlowFuse and Node-RED, including Node-RED instance management through natural language.","\u002Fdocs\u002Fuser\u002Fexpert\u002Fchat\u002F#support-mode",[5212],{"url":5213,"release":5204},"\u002Fchangelog\u002F2026\u002F02\u002Fff-expert-debug-log-context\u002F",false,{"edge":5181,"hub":5181,"fleet":5181},{"id":5217,"title":5218,"description":5219,"docsLink":5220,"changelog":5221,"subfeature":5181,"showOnPricing":5214,"tiers":5225},"flowfuse-expert-application-building","Application Building","Describe what you want to build and FlowFuse Expert assembles it on your workspace, adding tabs, wiring nodes, and configuring properties.","\u002Fdocs\u002Fuser\u002Fexpert\u002Fchat\u002F",[5222],{"url":5223,"release":5224},"\u002Fchangelog\u002F2026\u002F05\u002Fexpert-application-building\u002F","2.30",{"edge":5181,"hub":5181,"fleet":5181},{"id":5227,"title":5228,"description":5229,"docsLink":5230,"subfeature":5181,"beta":5181,"showOnPricing":5214,"tiers":5231},"flowfuse-expert-insights-mode","Insights Mode","Connects FlowFuse Expert to MCP servers in your Node-RED instances, enabling real-time data queries and actions through a single chat interface.","\u002Fdocs\u002Fuser\u002Fexpert\u002Fchat\u002F#insights-mode",{"edge":5181,"hub":5181,"fleet":5181},{"id":5233,"title":5234,"description":5235,"docsLink":5236,"changelog":5237,"tiers":5241},"third-party-agents","Connect Your Own AI Agent","Point the AI agent your company already uses at FlowFuse, so it can query your teams and instances and build Node-RED applications, with you deciding which teams it reaches and whether it can make changes.","\u002Fdocs\u002Fuser\u002Fexpert\u002Fthird-party-agents\u002F",[5238],{"url":5239,"release":5240},"\u002Fchangelog\u002F2026\u002F08\u002Fconnect-your-own-ai-agent\u002F","3.0",{"edge":5181,"hub":5181,"fleet":5181},{"id":5243,"title":5244,"description":5245,"docsLink":5246,"tiers":5247},"mcp-servers","Agentic Operations","Expose your Node-RED flows as tools an AI agent can call directly, so agents can query the state of the factory or trigger actions without custom integration work.","\u002Fdocs\u002Fflowfuse-nodes\u002Fmcp\u002F",{"edge":5181,"hub":5181,"fleet":5181},{"id":5249,"title":5250,"description":5251,"tiers":5252},"onnx-integration","ONNX Integration","Run trained machine learning models directly in your flows, including on edge hardware, without sending data out to an external inference service.",{"edge":5181,"hub":5181,"fleet":5181},{"id":5254,"title":5255,"features":5256},"build","Build",[5257,5263,5269,5279,5285,5291,5295,5301,5307,5315,5321,5325,5329,5338,5346],{"id":5258,"title":5259,"description":5260,"docsLink":5261,"tiers":5262},"edge-development","Edge Development","Develop and test Node-RED flows directly on edge devices with a remote editor proxy.","\u002Fdocs\u002Fdevice-agent\u002Fquickstart\u002F",{"edge":5181,"hub":5214,"fleet":5181},{"id":5264,"title":5265,"description":5266,"docsLink":5267,"tiers":5268},"private-npm-registry","Custom Node-RED Nodes","Create and manage your own private npm registry for Node-RED nodes, so you can share custom nodes across your team and devices without publishing them publicly.","\u002Fdocs\u002Fuser\u002Fcustom-npm-packages\u002F",{"edge":5181,"hub":5181,"fleet":5181},{"id":5270,"title":5271,"description":5272,"docsLink":5273,"changelog":5274,"tiers":5278},"flowfuse-tables","FlowFuse Tables","A managed PostgreSQL database for every application, so you can store and query structured data without standing up and maintaining your own database.","\u002Fdocs\u002Fuser\u002Fff-tables\u002F",[5275],{"url":5276,"release":5277},"\u002Fchangelog\u002F2026\u002F07\u002Fexpert-tables-automation\u002F","2.33",{"edge":5181,"hub":5181,"fleet":5181},{"id":5280,"title":5281,"description":5282,"docsLink":5283,"tiers":5284},"persistent-files","File Storage","Store and retrieve files from your Node-RED flows, with automatic replication and backup across your devices and hosted instances.","\u002Fdocs\u002Finstall\u002Ffile-storage\u002F",{"edge":5181,"hub":5181,"fleet":5181},{"id":5286,"title":5287,"description":5288,"docsLink":5289,"showOnPricing":5214,"tiers":5290},"persistent-context","Persistent Context","In-memory values defined in a Node-RED flow persist across project restarts and upgrades.","\u002Fdocs\u002Fuser\u002Fpersistent-context\u002F",{"edge":5181,"hub":5181,"fleet":5181},{"id":5292,"title":5293,"showOnPricing":5214,"tiers":5294},"static-assets","Static Assets",{"edge":5181,"hub":5181,"fleet":5181},{"id":5296,"title":5297,"description":5298,"docsLink":5299,"tiers":5300},"team-library","Team Library","Set up standard nodes and flows that can be shared with all team members across your organisation.","\u002Fdocs\u002Fuser\u002Fshared-library\u002F",{"edge":5181,"hub":5181,"fleet":5181},{"id":5302,"title":5303,"description":5304,"docsLink":5305,"tiers":5306},"personalised-multi-user-dashboards","Personalised Multi-User Dashboards","Build applications that provide unique data to each logged-in user using personalised multi-user dashboards.","https:\u002F\u002Fdashboard.flowfuse.com\u002Fuser\u002Fmulti-tenancy.html",{"edge":5181,"hub":5181,"fleet":5181},{"id":5308,"title":5309,"description":5310,"changelog":5311,"subfeature":5181,"showOnPricing":5214,"tiers":5314},"dashboards-view","Dashboards View","Browse and open every dashboard across your team from a dedicated Dashboards view, at both team and application level, without leaving FlowFuse.",[5312],{"url":5313,"release":5277},"\u002Fchangelog\u002F2026\u002F07\u002Fteam-and-application-dashboards\u002F",{"edge":5181,"hub":5181,"fleet":5181},{"id":5316,"title":5317,"description":5318,"docsLink":5319,"tiers":5320},"blueprints-converge","Blueprints","Ready-made starting points for your apps, from cross-team Converge templates to OT and IT specific blueprints.","\u002Fdocs\u002Fuser\u002Fconcepts\u002F#blueprint",{"edge":5181,"hub":5181,"fleet":5181},{"id":5322,"title":5323,"subfeature":5181,"showOnPricing":5214,"tiers":5324},"blueprints-ot-apps","Blueprints - OT APPS",{"edge":5181,"hub":5214,"fleet":5181},{"id":5326,"title":5327,"subfeature":5181,"showOnPricing":5214,"tiers":5328},"blueprints-it-apps","Blueprints - IT APPS",{"edge":5214,"hub":5181,"fleet":5214},{"id":5330,"title":5331,"description":5332,"changelog":5333,"showOnPricing":5214,"tiers":5337},"immersive-editor-snapshots","Snapshot Details in Immersive Editor","View and manage snapshot details directly inside the immersive editor without leaving your editing session.",[5334],{"url":5335,"release":5336},"\u002Fchangelog\u002F2026\u002F03\u002Fsnapshot-detail-modal-immersive-editor\u002F","2.29",{"edge":5181,"hub":5181,"fleet":5181},{"id":5339,"title":5340,"description":5341,"changelog":5342,"showOnPricing":5214,"tiers":5345},"immersive-editor-drawer","Customisable Immersive Editor Drawer","Pin, move, resize, or full-screen the immersive editor drawer. Your preferences are remembered between sessions.",[5343],{"url":5344,"release":5224},"\u002Fchangelog\u002F2026\u002F04\u002Fimmersive-editor-drawer\u002F",{"edge":5181,"hub":5181,"fleet":5181},{"id":5347,"title":5348,"description":5349,"changelog":5350,"showOnPricing":5214,"tiers":5353},"embedded-editor-tab-title","Embedded Editor Browser Tab Title","The browser tab title updates to reflect the active Node-RED canvas tab when working in the embedded editor.",[5351],{"url":5352,"release":5336},"\u002Fchangelog\u002F2026\u002F03\u002Fembedded-editor-tab-title\u002F",{"edge":5181,"hub":5181,"fleet":5181},{"id":5355,"title":5356,"features":5357},"deploy","Deploy",[5358,5364,5373,5379,5385,5391,5397,5403,5408],{"id":5359,"title":5360,"description":5361,"docsLink":5362,"tiers":5363},"hosted-instances","Cloud Instances","Run Node-RED instances managed and hosted by FlowFuse.","\u002Fdocs\u002Fuser\u002Fintroduction\u002F#creating-a-node-red-instance",{"edge":5181,"hub":5181,"fleet":5181},{"id":5365,"title":5366,"description":5367,"docsLink":5368,"changelog":5369,"tiers":5372},"edge-devices","Edge Instances","Deploy and mange your Node-RED instances on edge PLCs and gateways, with full visibility and control from the cloud.","\u002Fdocs\u002Fdevice-agent\u002Fintroduction\u002F",[5370],{"url":5371,"release":5204},"\u002Fchangelog\u002F2026\u002F02\u002Fdevice-agent-nodejs-options\u002F",{"edge":5181,"hub":5214,"fleet":5181},{"id":5374,"title":5375,"description":5376,"docsLink":5377,"tiers":5378},"custom-hostnames","Custom Hostnames","Access your Node-RED application via your own domain name.","\u002Fdocs\u002Fuser\u002Fcustom-hostnames\u002F",{"edge":5214,"hub":5181,"fleet":5214},{"id":5380,"title":5381,"description":5382,"docsLink":5383,"tiers":5384},"mqtt-broker","MQTT Broker","Manage and create MQTT clients to transport data for efficient messaging and communication within your applications.","\u002Fdocs\u002Fuser\u002Fteambroker\u002F",{"edge":5181,"hub":5214,"fleet":5181},{"id":5386,"title":5387,"description":5388,"docsLink":5389,"showOnPricing":5214,"tiers":5390},"project-nodes","Project Nodes aka seamless project comms","FlowFuse Project Nodes enable the passing of data and messages between your Node-RED projects.","\u002Fdocs\u002Fuser\u002Fprojectnodes\u002F",{"edge":5181,"hub":5181,"fleet":5181},{"id":5392,"title":5393,"description":5394,"docsLink":5395,"tiers":5396},"devops-pipelines","DevOps Pipelines","Set up different environments for development, testing, and production Node-RED instances to support a full software delivery lifecycle.","\u002Fdocs\u002Fuser\u002Fdevops-pipelines\u002F",{"edge":5181,"hub":5181,"fleet":5181},{"id":5398,"title":5399,"description":5400,"docsLink":5401,"tiers":5402},"git-integration","Git Integration","Back up your flows to a remote Git repository through a DevOps Pipeline. Supports GitHub and Azure DevOps repositories.","\u002Fdocs\u002Fuser\u002Fdevops-pipelines\u002F#git-repository-stage",{"edge":5214,"hub":5181,"fleet":5214},{"id":5404,"title":5405,"description":5406,"docsLink":5401,"subfeature":5181,"showOnPricing":5214,"tiers":5407},"git-integration-github","GitHub","Push and pull snapshots to GitHub repositories through DevOps Pipeline Git Stages.",{"edge":5214,"hub":5181,"fleet":5214},{"id":5409,"title":5410,"description":5411,"docsLink":5401,"changelog":5412,"subfeature":5181,"showOnPricing":5214,"tiers":5415},"git-integration-azure","Azure DevOps","Push and pull snapshots to Azure DevOps repositories through DevOps Pipeline Git Stages.",[5413],{"url":5414,"release":5336},"\u002Fchangelog\u002F2026\u002F03\u002Fazure-dev-ops-gitops\u002F",{"edge":5214,"hub":5181,"fleet":5214},{"id":5417,"title":5418,"features":5419},"operate-maintain","Operate & Maintain",[5420,5426,5432,5437,5445,5449,5453,5458,5464,5470,5475,5481,5485,5489],{"id":5421,"title":5422,"description":5423,"docsLink":5424,"tiers":5425},"snapshots","Snapshots & Version History","Automatic snapshots on remote devices and hosted instances, plus a full version history timeline so you can roll back to any prior state.","\u002Fdocs\u002Fuser\u002Fsnapshots\u002F",{"edge":5181,"hub":5181,"fleet":5181},{"id":5427,"title":5428,"description":5429,"docsLink":5430,"subfeature":5181,"showOnPricing":5214,"tiers":5431},"auto-snapshot-remote","Auto Snapshot (Remote)","Automatically capture a snapshot every time a remote instance is deployed, so you always have a recoverable history of what was running on each device.","\u002Fdocs\u002Fuser\u002Fsnapshots\u002F#auto-snapshots",{"edge":5181,"hub":5181,"fleet":5181},{"id":5433,"title":5434,"description":5435,"docsLink":5430,"subfeature":5181,"showOnPricing":5214,"tiers":5436},"auto-snapshot-hosted","Auto Snapshot (Hosted)","Automatically capture a snapshot every time a hosted instance is deployed, so you always have a recoverable history of what was running.",{"edge":5181,"hub":5181,"fleet":5181},{"id":5438,"title":5439,"description":5440,"changelog":5441,"subfeature":5181,"showOnPricing":5214,"tiers":5444},"snapshot-comparison","Snapshot Comparison","Compare two snapshots side-by-side with a navigable diff view. Step through every changed, added, or deleted node and see property and code diffs.",[5442],{"url":5443,"release":5336},"\u002Fchangelog\u002F2026\u002F04\u002Fsnapshot-diff-viewer\u002F",{"edge":5181,"hub":5181,"fleet":5181},{"id":5446,"title":5447,"subfeature":5181,"showOnPricing":5214,"tiers":5448},"version-history-timeline","Version History Timeline",{"edge":5181,"hub":5181,"fleet":5181},{"id":5450,"title":5451,"tiers":5452},"unlimited-workflow-executions","Unlimited Workflow Executions",{"edge":5181,"hub":5181,"fleet":5181},{"id":5454,"title":5455,"description":5456,"tiers":5457},"device-fleet-updates","Device Fleet Updates","Connect to edge devices to quickly assess and update logic. Debug one device and roll out improvements to your fleet in minutes, securely without requiring full device access for your whole organisation.",{"edge":5181,"hub":5214,"fleet":5181},{"id":5459,"title":5460,"description":5461,"docsLink":5462,"tiers":5463},"device-group-management","Device Group Management","Logically group devices assigned to an application and integrate device groups into your DevOps Pipeline for coordinated fleet updates.","\u002Fdocs\u002Fuser\u002Fdevice-groups\u002F",{"edge":5181,"hub":5214,"fleet":5181},{"id":5465,"title":5466,"description":5467,"docsLink":5468,"tiers":5469},"high-availability","High Availability","Leverage horizontal scaling for reliable and scalable processing of your data through Node-RED.","\u002Fdocs\u002Fuser\u002Fhigh-availability\u002F",{"edge":5214,"hub":5181,"fleet":5214},{"id":5471,"title":5472,"description":5473,"tiers":5474},"performance-monitoring","Performance Monitoring & Alerts","Track CPU, memory, and event loop performance across your instances and devices, with email alerts when something needs your attention.",{"edge":5181,"hub":5181,"fleet":5181},{"id":5476,"title":5477,"description":5478,"docsLink":5479,"subfeature":5181,"showOnPricing":5214,"tiers":5480},"instance-monitoring","Instance Monitoring","Enable alerts to be sent via email when your Node-RED instances encounter issues.","\u002Fdocs\u002Fuser\u002Finstance-settings\u002F#alerts",{"edge":5181,"hub":5181,"fleet":5181},{"id":5482,"title":5483,"subfeature":5181,"showOnPricing":5214,"tiers":5484},"email-alerts","Email Alerts",{"edge":5181,"hub":5181,"fleet":5181},{"id":5486,"title":5487,"showOnPricing":5214,"tiers":5488},"api-debug-length-limit","API\u002FDebug Length Limit",{"edge":5181,"hub":5181,"fleet":5181},{"id":5490,"title":5491,"tiers":5492},"protected-instances","Protected Instances",{"edge":5214,"hub":5181,"fleet":5214},{"id":5494,"title":5495,"features":5496},"govern-secure","Govern and Secure",[5497,5506,5512,5518,5523,5529,5535,5541,5549,5555,5561,5567],{"id":5498,"title":5499,"description":5500,"docsLink":5501,"changelog":5502,"tiers":5505},"single-sign-on","Single Sign-On (SSO)","Configure FlowFuse to work with your own SSO provider, allowing users to access FlowFuse with a single set of login credentials.","\u002Fdocs\u002Fadmin\u002Fsso\u002F",[5503],{"url":5504,"release":5277},"\u002Fchangelog\u002F2026\u002F07\u002Fapplication-sso-groups\u002F",{"edge":5181,"hub":5181,"fleet":5181},{"id":5507,"title":5508,"description":5509,"docsLink":5510,"tiers":5511},"two-factor-authentication","Two-Factor Authentication","Two-factor authentication adds an extra layer of security to your FlowFuse account.","\u002Fdocs\u002Fuser\u002Fuser-settings\u002F#two-factor-authentication",{"edge":5181,"hub":5181,"fleet":5181},{"id":5513,"title":5514,"description":5515,"docsLink":5516,"tiers":5517},"certified-nodes-it","Certified Nodes - IT","IT certified node bundle includes: Redis, MQTT, HTTP Request, AI nodes (Gemini, Claude, ChatGPT, Ollama), MCP Server","\u002Fblog\u002F2025\u002F07\u002Fcertified-nodes-v2\u002F",{"edge":5214,"hub":5181,"fleet":5181},{"id":5519,"title":5520,"description":5521,"tiers":5522},"certified-nodes-ot","Certified OT Connections - OPC-UA, Modbus, etc.","OT certified node bundle includes: OPC-UA, Modbus TCP & RTU, RTSP, EtherNet\u002FIP, AI nodes (Gemini, Claude, ChatGPT, Ollama), MCP Server",{"edge":5181,"hub":5214,"fleet":5214},{"id":5524,"title":5525,"description":5526,"docsLink":5527,"tiers":5528},"audit-log","Audit Log","Keep track of everything going on in your Node-RED instances and FlowFuse. Audit Logs provide details on what actions have taken place, when they happened, and who did them.","\u002Fdocs\u002Fuser\u002Flogs\u002F#audit-log",{"edge":5181,"hub":5181,"fleet":5181},{"id":5530,"title":5531,"description":5532,"docsLink":5533,"tiers":5534},"role-based-access-control","Role-Based Access Control","Control who can do what at both the team and application level, from viewers to admins.","\u002Fdocs\u002Fuser\u002Frole-based-access-control\u002F",{"edge":5181,"hub":5181,"fleet":5181},{"id":5536,"title":5537,"description":5538,"docsLink":5539,"subfeature":5181,"showOnPricing":5214,"tiers":5540},"application-level-rbac","Application-Level RBAC","Fine-grained access control per application, allowing team members to have different permission levels across different applications without requiring separate teams.","\u002Fdocs\u002Fuser\u002Frole-based-access-control\u002F#application-level-rbac",{"edge":5181,"hub":5181,"fleet":5181},{"id":5542,"title":5543,"description":5544,"changelog":5545,"subfeature":5181,"showOnPricing":5214,"tiers":5548},"scoped-personal-access-tokens","Scoped Personal Access Tokens","Restrict a Personal Access Token to specific teams, limit it to read-only operations, or control whether it carries admin privileges.",[5546],{"url":5547,"release":5277},"\u002Fchangelog\u002F2026\u002F07\u002Fscoped-pats\u002F",{"edge":5181,"hub":5181,"fleet":5181},{"id":5550,"title":5551,"description":5552,"docsLink":5553,"showOnPricing":5214,"tiers":5554},"team-members","Team Members","Invite multiple team members to collaborate on the same Node-RED flows.","\u002Fdocs\u002Fuser\u002Fteam\u002F#teams",{"edge":5181,"hub":5181,"fleet":5181},{"id":5556,"title":5557,"description":5558,"docsLink":5559,"showOnPricing":5214,"tiers":5560},"endpoint-security","Endpoint Security","Secure HTTP endpoints for hosted Node-RED instances using FlowFuse credentials.","\u002Fdocs\u002Fuser\u002Finstance-settings\u002F#security",{"edge":5181,"hub":5181,"fleet":5181},{"id":5562,"title":5563,"description":5564,"docsLink":5565,"tiers":5566},"baa-for-hipaa","BAA for HIPAA","FlowFuse can sign a Business Associate Agreement to ensure proper safeguarding of protected health information handled on your behalf.","\u002Fhandbook\u002Fsales\u002Fsubscription-agreement-1.6\u002F",{"edge":5214,"hub":5181,"fleet":5214},{"id":5568,"title":5569,"description":5570,"tiers":5571},"sbom","Software Bill of Materials","A complete list of all software components used in your Node-RED instances and hosted applications, including version numbers and license information.",{"edge":5214,"hub":5181,"fleet":5214},{"id":5573,"title":5574,"features":5575},"support","Support",[5576,5581,5585],{"id":5577,"title":5578,"docsLink":5579,"tiers":5580},"installation-support","Installation Support","\u002Fdocs\u002Finstall\u002Fintroduction\u002F#do-you-need-help-installation-service",{"edge":5181,"hub":5181,"fleet":5181},{"id":5582,"title":5583,"showOnPricing":5214,"tiers":5584},"live-chat-support","Live Chat Support",{"edge":5181,"hub":5181,"fleet":5181},{"id":5586,"title":5587,"docsLink":5588,"tiers":5589},"enterprise-support","Enterprise Support","\u002Fdocs\u002Fpremium-support\u002F",{"edge":5181,"hub":5181,"fleet":5181},"feature-catalog","v5NjPsqOkQexQ0Fk82nqY6ZEXj128lclDvrIkmsKbpM",[5593,5679,5917,5987,6000,6140,6150,6231],{"name":5594,"order":5595,"children":5596},"Application Guide",0,[5597,5645],{"title":5598,"path":5599,"group":5594,"groupOrder":5595,"order":271,"children":5600},"Building FlowFuse applications","\u002Fdocs\u002Fapplication-guide",[5601,5605,5617,5621,5637],{"title":5602,"path":5603,"order":271,"children":5604},"Foundations","\u002Fdocs\u002Fapplication-guide\u002Ffoundations",[],{"title":5606,"path":5607,"order":277,"children":5608},"App delivery methods","\u002Fdocs\u002Fapplication-guide\u002Fapp-delivery-methods",[5609,5613],{"title":5610,"path":5611,"order":271,"children":5612},"Hardware apps","\u002Fdocs\u002Fapplication-guide\u002Fapp-delivery-methods\u002Fhardware-apps",[],{"title":5614,"path":5615,"order":277,"children":5616},"Software apps","\u002Fdocs\u002Fapplication-guide\u002Fapp-delivery-methods\u002Fsoftware-apps",[],{"title":5618,"path":5619,"order":283,"children":5620},"Data plane","\u002Fdocs\u002Fapplication-guide\u002Fdata-plane",[],{"title":5622,"path":5623,"order":289,"children":5624},"Architectures","\u002Fdocs\u002Fapplication-guide\u002Farchitectures",[5625,5629,5633],{"title":5626,"path":5627,"order":271,"children":5628},"IT architectures","\u002Fdocs\u002Fapplication-guide\u002Farchitectures\u002Fit",[],{"title":5630,"path":5631,"order":277,"children":5632},"OT architectures","\u002Fdocs\u002Fapplication-guide\u002Farchitectures\u002Fot",[],{"title":5634,"path":5635,"order":283,"children":5636},"IIoT architectures","\u002Fdocs\u002Fapplication-guide\u002Farchitectures\u002Fiiot",[],{"title":5638,"path":5639,"order":295,"children":5640},"Worked examples","\u002Fdocs\u002Fapplication-guide\u002Fworked-examples",[5641],{"title":5642,"path":5643,"order":271,"children":5644},"OEE, end to end","\u002Fdocs\u002Fapplication-guide\u002Fworked-examples\u002Foee",[],{"title":5646,"path":5647,"group":5594,"groupOrder":5595,"order":277,"children":5648},"Designing Node-RED flows","\u002Fdocs\u002Fnode-red-guide",[5649,5652,5668],{"title":5602,"path":5650,"order":271,"children":5651},"\u002Fdocs\u002Fnode-red-guide\u002Ffoundations",[],{"title":5653,"path":5654,"order":277,"children":5655},"Patterns","\u002Fdocs\u002Fnode-red-guide\u002Fpatterns",[5656,5660,5664],{"title":5657,"path":5658,"order":271,"children":5659},"Design patterns","\u002Fdocs\u002Fnode-red-guide\u002Fpatterns\u002Fdesign-patterns",[],{"title":5661,"path":5662,"order":277,"children":5663},"Handling data","\u002Fdocs\u002Fnode-red-guide\u002Fpatterns\u002Fhandling-data",[],{"title":5665,"path":5666,"order":283,"children":5667},"Good form","\u002Fdocs\u002Fnode-red-guide\u002Fpatterns\u002Fgood-form",[],{"title":5638,"path":5669,"order":283,"children":5670},"\u002Fdocs\u002Fnode-red-guide\u002Fworked-examples",[5671,5675],{"title":5672,"path":5673,"order":271,"children":5674},"OEE - Edge Aggregator","\u002Fdocs\u002Fnode-red-guide\u002Fworked-examples\u002Foee-edge-aggregator",[],{"title":5676,"path":5677,"order":277,"children":5678},"OEE - Central Dashboard","\u002Fdocs\u002Fnode-red-guide\u002Fworked-examples\u002Foee-central-dashboard",[],{"name":5680,"order":271,"children":5681},"FlowFuse User Manuals",[5682,5807,5811,5823],{"title":5683,"path":5684,"group":5680,"groupOrder":271,"order":271,"children":5685,"link":5214},"Using FlowFuse","\u002Fdocs\u002Fuser",[5686,5690,5694,5698,5702,5707,5711,5714,5718,5722,5725,5729,5745,5749,5753,5757,5761,5764,5768,5772,5776,5780,5784,5787,5791,5795,5799,5803],{"title":5687,"path":5688,"order":271,"children":5689},"Getting Started","\u002Fdocs\u002Fuser\u002Fintroduction",[],{"title":5691,"path":5692,"order":271,"children":5693},"Static asset service","\u002Fdocs\u002Fuser\u002Fstatic-asset-service",[],{"title":5695,"path":5696,"order":277,"children":5697},"Bill of Materials","\u002Fdocs\u002Fuser\u002Fbill-of-materials",[],{"title":5699,"path":5700,"order":277,"children":5701},"FlowFuse Concepts","\u002Fdocs\u002Fuser\u002Fconcepts",[],{"title":5703,"path":5704,"order":5705,"children":5706},"Instance States","\u002Fdocs\u002Fuser\u002Finstance-states",10,[],{"title":5708,"path":5709,"order":5177,"children":5710},"Changing the Stack","\u002Fdocs\u002Fuser\u002Fchangestack",[],{"title":5375,"path":5712,"order":5177,"children":5713},"\u002Fdocs\u002Fuser\u002Fcustom-hostnames",[],{"title":5715,"path":5716,"order":5177,"children":5717},"Custom Node Packages","\u002Fdocs\u002Fuser\u002Fcustom-npm-packages",[],{"title":5719,"path":5720,"order":5177,"children":5721},"Dashboards","\u002Fdocs\u002Fuser\u002Fdashboards",[],{"title":5393,"path":5723,"order":5177,"children":5724},"\u002Fdocs\u002Fuser\u002Fdevops-pipelines",[],{"title":5726,"path":5727,"order":5177,"children":5728},"Environment Variables","\u002Fdocs\u002Fuser\u002Fenvvar",[],{"title":5730,"path":5731,"order":5177,"children":5732},"FlowFuse Expert","\u002Fdocs\u002Fuser\u002Fexpert",[5733,5737,5741],{"title":5734,"path":5735,"order":5177,"children":5736},"AI in Node-RED","\u002Fdocs\u002Fuser\u002Fexpert\u002Fnode-red-embedded-ai",[],{"title":5738,"path":5739,"order":5177,"children":5740},"Chat Interface","\u002Fdocs\u002Fuser\u002Fexpert\u002Fchat",[],{"title":5742,"path":5743,"order":5177,"children":5744},"Connect Your Own Agent","\u002Fdocs\u002Fuser\u002Fexpert\u002Fthird-party-agents",[],{"title":5746,"path":5747,"order":5177,"children":5748},"FlowFuse File Nodes","\u002Fdocs\u002Fuser\u002Ffilenodes",[],{"title":5750,"path":5751,"order":5177,"children":5752},"FlowFuse MQTT Nodes","\u002Fdocs\u002Fuser\u002Fmqtt-nodes",[],{"title":5754,"path":5755,"order":5177,"children":5756},"FlowFuse Persistent Context","\u002Fdocs\u002Fuser\u002Fpersistent-context",[],{"title":5758,"path":5759,"order":5177,"children":5760},"FlowFuse Project Nodes","\u002Fdocs\u002Fuser\u002Fprojectnodes",[],{"title":5271,"path":5762,"order":5177,"children":5763},"\u002Fdocs\u002Fuser\u002Fff-tables",[],{"title":5765,"path":5766,"order":5177,"children":5767},"Groups","\u002Fdocs\u002Fuser\u002Fdevice-groups",[],{"title":5769,"path":5770,"order":5177,"children":5771},"High Availability mode","\u002Fdocs\u002Fuser\u002Fhigh-availability",[],{"title":5773,"path":5774,"order":5177,"children":5775},"HTTP Access Tokens","\u002Fdocs\u002Fuser\u002Fhttp-access-tokens",[],{"title":5777,"path":5778,"order":5177,"children":5779},"Instance Settings","\u002Fdocs\u002Fuser\u002Finstance-settings",[],{"title":5781,"path":5782,"order":5177,"children":5783},"Logging","\u002Fdocs\u002Fuser\u002Flogs",[],{"title":5531,"path":5785,"order":5177,"children":5786},"\u002Fdocs\u002Fuser\u002Frole-based-access-control",[],{"title":5788,"path":5789,"order":5177,"children":5790},"Shared Team Library","\u002Fdocs\u002Fuser\u002Fshared-library",[],{"title":5792,"path":5793,"order":5177,"children":5794},"Snapshots","\u002Fdocs\u002Fuser\u002Fsnapshots",[],{"title":5796,"path":5797,"order":5177,"children":5798},"Team Broker","\u002Fdocs\u002Fuser\u002Fteambroker",[],{"title":5800,"path":5801,"order":5177,"children":5802},"Teams","\u002Fdocs\u002Fuser\u002Fteam",[],{"title":5804,"path":5805,"order":5177,"children":5806},"User Settings","\u002Fdocs\u002Fuser\u002Fuser-settings",[],{"title":5808,"path":5809,"group":5680,"groupOrder":271,"order":277,"children":5810},"FlowFuse API","\u002Fdocs\u002Fapi",[],{"title":5812,"path":5813,"group":5680,"groupOrder":271,"order":283,"children":5814,"link":5214},"Migrating a Node-RED project to FlowFuse","\u002Fdocs\u002Fmigration",[5815,5819],{"title":5816,"path":5817,"order":271,"children":5818},"Introduction","\u002Fdocs\u002Fmigration\u002Fintroduction",[],{"title":5820,"path":5821,"order":5177,"children":5822},"Node-RED Tools plugin","\u002Fdocs\u002Fmigration\u002Fnode-red-tools",[],{"title":5824,"path":5825,"group":5680,"groupOrder":271,"order":289,"children":5826},"FlowFuse Node-RED nodes","\u002Fdocs\u002Fflowfuse-nodes",[5827,5851,5871,5878,5898,5909],{"title":5828,"path":5829,"order":271,"children":5830},"AI","\u002Fdocs\u002Fflowfuse-nodes\u002Fai",[5831,5835,5839,5843,5847],{"title":5832,"path":5833,"order":295,"children":5834},"LLM Nodes","\u002Fdocs\u002Fflowfuse-nodes\u002Fai\u002Fllm-nodes",[],{"title":5836,"path":5837,"order":5180,"children":5838},"Depth Estimation","\u002Fdocs\u002Fflowfuse-nodes\u002Fai\u002Fdepth-estimation",[],{"title":5840,"path":5841,"order":5180,"children":5842},"Image Classification","\u002Fdocs\u002Fflowfuse-nodes\u002Fai\u002Fimage-classification",[],{"title":5844,"path":5845,"order":5180,"children":5846},"Object Detection","\u002Fdocs\u002Fflowfuse-nodes\u002Fai\u002Fobject-detection",[],{"title":5848,"path":5849,"order":5180,"children":5850},"ONXX","\u002Fdocs\u002Fflowfuse-nodes\u002Fai\u002Fonxx",[],{"title":5852,"path":5853,"order":277,"children":5854},"MCP","\u002Fdocs\u002Fflowfuse-nodes\u002Fmcp",[5855,5859,5863,5867],{"title":5856,"path":5857,"order":5180,"children":5858},"MCP Prompt","\u002Fdocs\u002Fflowfuse-nodes\u002Fmcp\u002Fmcp-prompt",[],{"title":5860,"path":5861,"order":5180,"children":5862},"MCP Resource","\u002Fdocs\u002Fflowfuse-nodes\u002Fmcp\u002Fmcp-resource",[],{"title":5864,"path":5865,"order":5180,"children":5866},"MCP Responses","\u002Fdocs\u002Fflowfuse-nodes\u002Fmcp\u002Fmcp-response",[],{"title":5868,"path":5869,"order":5180,"children":5870},"MCP Tool","\u002Fdocs\u002Fflowfuse-nodes\u002Fmcp\u002Fmcp-tool",[],{"title":5271,"path":5872,"order":283,"children":5873},"\u002Fdocs\u002Fflowfuse-nodes\u002Fflowfuse-tables",[5874],{"title":5875,"path":5876,"order":5180,"children":5877},"Query","\u002Fdocs\u002Fflowfuse-nodes\u002Fflowfuse-tables\u002Fquery",[],{"title":5879,"path":5880,"order":289,"children":5881},"Edge","\u002Fdocs\u002Fflowfuse-nodes\u002Fedge",[5882,5886,5890,5894],{"title":5883,"path":5884,"order":271,"children":5885},"RTSP Video Feed","\u002Fdocs\u002Fflowfuse-nodes\u002Fedge\u002Frtsp",[],{"title":5887,"path":5888,"order":277,"children":5889},"CIP Suite, EtherNet\u002FIP Nodes","\u002Fdocs\u002Fflowfuse-nodes\u002Fedge\u002Fcip-suite",[],{"title":5891,"path":5892,"order":283,"children":5893},"Modbus","\u002Fdocs\u002Fflowfuse-nodes\u002Fedge\u002Fmodbus",[],{"title":5895,"path":5896,"order":5180,"children":5897},"OPC UA","\u002Fdocs\u002Fflowfuse-nodes\u002Fedge\u002Fopcua",[],{"title":5750,"path":5899,"order":295,"children":5900},"\u002Fdocs\u002Fflowfuse-nodes\u002Fmqtt",[5901,5905],{"title":5902,"path":5903,"order":5180,"children":5904},"MQTT In","\u002Fdocs\u002Fflowfuse-nodes\u002Fmqtt\u002Fmqtt-in",[],{"title":5906,"path":5907,"order":5180,"children":5908},"MQTT Out","\u002Fdocs\u002Fflowfuse-nodes\u002Fmqtt\u002Fmqtt-out",[],{"title":5910,"path":5911,"order":295,"children":5912},"Hub","\u002Fdocs\u002Fflowfuse-nodes\u002Fhub",[5913],{"title":5914,"path":5915,"order":271,"children":5916},"Redis","\u002Fdocs\u002Fflowfuse-nodes\u002Fhub\u002Fredis",[],{"name":5918,"order":277,"children":5919},"Device Agent",[5920,5968],{"title":5918,"path":5921,"group":5918,"groupOrder":277,"order":271,"children":5922,"link":5214},"\u002Fdocs\u002Fdevice-agent",[5923,5927,5931,5956,5960,5964],{"title":5924,"path":5925,"order":271,"children":5926},"FlowFuse Device Agent Introduction","\u002Fdocs\u002Fdevice-agent\u002Fintroduction",[],{"title":5928,"path":5929,"order":277,"children":5930},"Quick Start","\u002Fdocs\u002Fdevice-agent\u002Fquickstart",[],{"title":5932,"path":5933,"group":5934,"order":283,"children":5935,"link":5214},"Installation","\u002Fdocs\u002Fdevice-agent\u002Finstall","DeviceAgentInstallation",[5936,5940,5944,5948,5952],{"title":5937,"path":5938,"group":5934,"order":271,"children":5939},"Overview","\u002Fdocs\u002Fdevice-agent\u002Finstall\u002Foverview",[],{"title":5941,"path":5942,"group":5934,"order":277,"children":5943},"Device Agent Installer","\u002Fdocs\u002Fdevice-agent\u002Finstall\u002Fdevice-agent-installer",[],{"title":5945,"path":5946,"group":5934,"order":283,"children":5947},"Docker Install","\u002Fdocs\u002Fdevice-agent\u002Finstall\u002Fdocker",[],{"title":5949,"path":5950,"group":5934,"order":289,"children":5951},"Kubernetes Install","\u002Fdocs\u002Fdevice-agent\u002Finstall\u002Fkubernetes",[],{"title":5953,"path":5954,"group":5934,"order":295,"children":5955},"Manual Install with NPM","\u002Fdocs\u002Fdevice-agent\u002Finstall\u002Fmanual",[],{"title":5957,"path":5958,"order":289,"children":5959},"Register your Remote Instance","\u002Fdocs\u002Fdevice-agent\u002Fregister",[],{"title":5961,"path":5962,"order":295,"children":5963},"Running the Agent","\u002Fdocs\u002Fdevice-agent\u002Frunning",[],{"title":5965,"path":5966,"order":301,"children":5967},"Deploying your Flows","\u002Fdocs\u002Fdevice-agent\u002Fdeploy",[],{"title":5969,"path":5970,"group":5918,"groupOrder":277,"order":277,"children":5971,"link":5214},"Hardware Guides","\u002Fdocs\u002Fhardware",[5972,5975,5979,5983],{"title":5937,"path":5973,"order":271,"children":5974},"\u002Fdocs\u002Fhardware\u002Fintroduction",[],{"title":5976,"path":5977,"order":277,"children":5978},"ctrlX - Node-RED","\u002Fdocs\u002Fhardware\u002Fctrlx-node-red",[],{"title":5980,"path":5981,"order":283,"children":5982},"ctrlX - Device Agent","\u002Fdocs\u002Fhardware\u002Fctrlx-device-agent",[],{"title":5984,"path":5985,"order":283,"children":5986},"Raspberry Pi with Raspbian","\u002Fdocs\u002Fhardware\u002Fraspbian",[],{"name":5988,"order":283,"children":5989},"FlowFuse Cloud",[5990],{"title":5988,"path":5991,"group":5988,"groupOrder":283,"order":283,"children":5992,"link":5214},"\u002Fdocs\u002Fcloud",[5993,5996],{"title":5816,"path":5994,"order":271,"children":5995},"\u002Fdocs\u002Fcloud\u002Fintroduction",[],{"title":5997,"path":5998,"order":5177,"children":5999},"FlowFuse Cloud Billing","\u002Fdocs\u002Fcloud\u002Fbilling",[],{"name":6001,"order":289,"children":6002},"FlowFuse Self-Hosted",[6003,6006,6081,6093],{"title":5928,"path":6004,"group":6001,"groupOrder":289,"order":271,"children":6005},"\u002Fdocs\u002Fquick-start",[],{"title":6007,"path":6008,"group":6001,"groupOrder":289,"order":277,"children":6009,"link":5214},"Installing FlowFuse","\u002Fdocs\u002Finstall",[6010,6013,6017,6021,6041,6045,6049,6053],{"title":5937,"path":6011,"order":271,"children":6012},"\u002Fdocs\u002Finstall\u002Fintroduction",[],{"title":6014,"path":6015,"order":5177,"children":6016},"Configuring FlowFuse","\u002Fdocs\u002Finstall\u002Fconfiguration",[],{"title":6018,"path":6019,"order":5177,"children":6020},"DNS Setup","\u002Fdocs\u002Finstall\u002Fdns-setup",[],{"title":6022,"path":6023,"order":5177,"children":6024},"Docker install","\u002Fdocs\u002Finstall\u002Fdocker",[6025,6029,6033,6037],{"title":6026,"path":6027,"order":5177,"children":6028},"Add Project Stacks on Docker","\u002Fdocs\u002Finstall\u002Fdocker\u002Fstacks",[],{"title":6030,"path":6031,"order":5177,"children":6032},"Docker Engine on Windows","\u002Fdocs\u002Finstall\u002Fdocker\u002Fwindows-docker-ce",[],{"title":6034,"path":6035,"order":5177,"children":6036},"Docker from AWS Market Place","\u002Fdocs\u002Finstall\u002Fdocker\u002Faws-marketplace",[],{"title":6038,"path":6039,"order":5177,"children":6040},"Docker on Digital Ocean","\u002Fdocs\u002Finstall\u002Fdocker\u002Fdigital-ocean",[],{"title":6042,"path":6043,"order":5177,"children":6044},"Email configuration","\u002Fdocs\u002Finstall\u002Femail-providers",[],{"title":6046,"path":6047,"order":5177,"children":6048},"First Run Setup","\u002Fdocs\u002Finstall\u002Ffirst-run",[],{"title":6050,"path":6051,"order":5177,"children":6052},"FlowFuse File Storage","\u002Fdocs\u002Finstall\u002Ffile-storage",[],{"title":6054,"path":6055,"order":5177,"children":6056},"Install FlowFuse on Kubernetes","\u002Fdocs\u002Finstall\u002Fkubernetes",[6057,6061,6065,6069,6073,6077],{"title":6058,"path":6059,"order":5177,"children":6060},"AWS EKS Installation","\u002Fdocs\u002Finstall\u002Fkubernetes\u002Faws",[],{"title":6062,"path":6063,"order":5177,"children":6064},"AWS EKS Installation with Terraform and Helm","\u002Fdocs\u002Finstall\u002Fkubernetes\u002Faws-terraform",[],{"title":6066,"path":6067,"order":5177,"children":6068},"Digital Ocean Kubernetes Installation","\u002Fdocs\u002Finstall\u002Fkubernetes\u002Fdigital-ocean",[],{"title":6070,"path":6071,"order":5177,"children":6072},"Ingress Controller Migration","\u002Fdocs\u002Finstall\u002Fkubernetes\u002Fingress-controller-migration",[],{"title":6074,"path":6075,"order":5177,"children":6076},"Kubernetes Project Stacks","\u002Fdocs\u002Finstall\u002Fkubernetes\u002Fstacks",[],{"title":6078,"path":6079,"order":5177,"children":6080},"OpenShift Installation","\u002Fdocs\u002Finstall\u002Fkubernetes\u002Fopenshift",[],{"title":6082,"path":6083,"group":6001,"groupOrder":289,"order":283,"children":6084},"Upgrading FlowFuse","\u002Fdocs\u002Fupgrade",[6085,6089],{"title":6086,"path":6087,"order":5177,"children":6088},"Installing a license","\u002Fdocs\u002Fupgrade\u002Fopen-source-to-premium",[],{"title":6090,"path":6091,"order":5177,"children":6092},"Upgrading the Node-RED version","\u002Fdocs\u002Fupgrade\u002Fnodered-version",[],{"title":6094,"path":6095,"group":6001,"groupOrder":289,"order":289,"children":6096,"link":5214},"Administering FlowFuse","\u002Fdocs\u002Fadmin",[6097,6100,6112,6120,6124,6128,6132,6136],{"title":6094,"path":6098,"order":271,"children":6099},"\u002Fdocs\u002Fadmin\u002Fintroduction",[],{"title":6101,"path":6102,"order":5177,"children":6103},"Configuring Single Sign-On (SSO)","\u002Fdocs\u002Fadmin\u002Fsso",[6104,6108],{"title":6105,"path":6106,"order":5177,"children":6107},"LDAP SSO","\u002Fdocs\u002Fadmin\u002Fsso\u002Fldap",[],{"title":6109,"path":6110,"order":5177,"children":6111},"SAML SSO","\u002Fdocs\u002Fadmin\u002Fsso\u002Fsaml",[],{"title":6113,"path":6114,"order":5177,"children":6115,"link":5214},"Hardening","\u002Fdocs\u002Fadmin\u002Fhardening",[6116],{"title":6117,"path":6118,"order":5177,"children":6119},"Kubernetes Hardening","\u002Fdocs\u002Fadmin\u002Fhardening\u002Fkubernetes",[],{"title":6121,"path":6122,"order":5177,"children":6123},"Monitoring","\u002Fdocs\u002Fadmin\u002Fmonitoring",[],{"title":6125,"path":6126,"order":5177,"children":6127},"Observability","\u002Fdocs\u002Fadmin\u002Fobservability",[],{"title":6129,"path":6130,"order":5177,"children":6131},"Soft Launch Enablement","\u002Fdocs\u002Fadmin\u002Ffeature-flags",[],{"title":6133,"path":6134,"order":5177,"children":6135},"Telemetry","\u002Fdocs\u002Fadmin\u002Ftelemetry",[],{"title":6137,"path":6138,"order":5177,"children":6139},"User Management","\u002Fdocs\u002Fadmin\u002Fuser-management",[],{"name":5574,"order":295,"children":6141},[6142,6146],{"title":6143,"path":6144,"group":5574,"groupOrder":295,"order":283,"children":6145},"Premium Support","\u002Fdocs\u002Fpremium-support",[],{"title":6147,"path":6148,"group":5574,"groupOrder":295,"order":5177,"children":6149},"Debugging Node-RED issues","\u002Fdocs\u002Fdebugging",[],{"name":6151,"order":301,"children":6152},"Contributing",[6153],{"title":6154,"path":6155,"group":6151,"groupOrder":301,"order":5177,"children":6156,"link":5214},"Contributing to FlowFuse","\u002Fdocs\u002Fcontribute",[6157,6160,6164,6168,6172,6176,6180,6188,6224,6227],{"title":5816,"path":6158,"order":271,"children":6159},"\u002Fdocs\u002Fcontribute\u002Fintroduction",[],{"title":6161,"path":6162,"order":5177,"children":6163},"Adding Template Settings","\u002Fdocs\u002Fcontribute\u002Fadding-template-settings",[],{"title":6165,"path":6166,"order":5177,"children":6167},"API Design","\u002Fdocs\u002Fcontribute\u002Fapi-design",[],{"title":6169,"path":6170,"order":5177,"children":6171},"Creating debug stack containers","\u002Fdocs\u002Fcontribute\u002Fcreating-debug-stack-containers",[],{"title":6173,"path":6174,"order":5177,"children":6175},"Database migrations","\u002Fdocs\u002Fcontribute\u002Fdb-migrations",[],{"title":6177,"path":6178,"order":5177,"children":6179},"FlowFuse Architecture","\u002Fdocs\u002Fcontribute\u002Farchitecture",[],{"title":6181,"path":6182,"order":5177,"children":6183},"Local Install","\u002Fdocs\u002Fcontribute\u002Flocal",[6184],{"title":6185,"path":6186,"order":5177,"children":6187},"Local Stacks","\u002Fdocs\u002Fcontribute\u002Flocal\u002Fstacks",[],{"title":6189,"path":6190,"order":5177,"children":6191},"State Flows","\u002Fdocs\u002Fcontribute\u002Fworkflows",[6192,6196,6200,6204,6208,6212,6216,6220],{"title":6193,"path":6194,"order":5177,"children":6195},"Device Editor","\u002Fdocs\u002Fcontribute\u002Fworkflows\u002Fdevice-editor",[],{"title":6197,"path":6198,"order":5177,"children":6199},"Instance states","\u002Fdocs\u002Fcontribute\u002Fworkflows\u002Fproject-states",[],{"title":6201,"path":6202,"order":5177,"children":6203},"Invite External Users","\u002Fdocs\u002Fcontribute\u002Fworkflows\u002Finvite-external-user",[],{"title":6205,"path":6206,"order":5177,"children":6207},"Project Creation","\u002Fdocs\u002Fcontribute\u002Fworkflows\u002Fproject-create",[],{"title":6209,"path":6210,"order":5177,"children":6211},"Reset Password Flow","\u002Fdocs\u002Fcontribute\u002Fworkflows\u002Fpassword-reset",[],{"title":6213,"path":6214,"order":5177,"children":6215},"Team creation Flow","\u002Fdocs\u002Fcontribute\u002Fworkflows\u002Fteam-create",[],{"title":6217,"path":6218,"order":5177,"children":6219},"User Login Flows","\u002Fdocs\u002Fcontribute\u002Fworkflows\u002Flogin",[],{"title":6221,"path":6222,"order":5177,"children":6223},"User Sign up Flow","\u002Fdocs\u002Fcontribute\u002Fworkflows\u002Fsignup",[],{"title":5796,"path":6225,"order":5177,"children":6226},"\u002Fdocs\u002Fcontribute\u002Fteam-broker",[],{"title":6228,"path":6229,"order":5177,"children":6230},"Working with Feature Flags","\u002Fdocs\u002Fcontribute\u002Ffeature-flags",[],{"name":6232,"order":307,"children":6233},"Node-RED",[6234],{"title":6235,"path":6236,"group":6232,"groupOrder":307,"order":271,"children":6237},"Using Node-RED","\u002Fdocs\u002Fnode-red",[6238,6310,6488,6515,6551,6567,6583,6611,6631,6635],{"title":6239,"path":6240,"order":277,"children":6241},"Getting started","\u002Fdocs\u002Fnode-red\u002Fgetting-started",[6242,6262,6266,6270,6274,6278,6282,6286,6290],{"title":6243,"path":6244,"order":271,"children":6245},"Editor","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Feditor",[6246,6250,6254,6258],{"title":6247,"path":6248,"order":5180,"children":6249},"Header","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Feditor\u002Fheader",[],{"title":6251,"path":6252,"order":5180,"children":6253},"Palette","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Feditor\u002Fpalette",[],{"title":6255,"path":6256,"order":5180,"children":6257},"Sidebar","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Feditor\u002Fsidebar",[],{"title":6259,"path":6260,"order":5180,"children":6261},"Workspace","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Feditor\u002Fworkspace",[],{"title":6263,"path":6264,"order":277,"children":6265},"Port Configuration","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Fnode-red-port",[],{"title":6267,"path":6268,"order":283,"children":6269},"Node-RED Library","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Flibrary",[],{"title":6271,"path":6272,"order":283,"children":6273},"Update Node-RED","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Fupdate-node-red",[],{"title":6275,"path":6276,"order":289,"children":6277},"Node-RED On Android","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Fnode-red-android",[],{"title":6279,"path":6280,"order":295,"children":6281},"Working with Messages","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Fnode-red-messages",[],{"title":6283,"path":6284,"order":301,"children":6285},"String","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Fstring",[],{"title":6287,"path":6288,"order":307,"children":6289},"Date & Time","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Fdate-and-time",[],{"title":6291,"path":6292,"order":386,"children":6293},"Programming","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Fprogramming",[6294,6298,6302,6306],{"title":6295,"path":6296,"order":5180,"children":6297},"Data Tranformation","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Fprogramming\u002Fdata-tranformation",[],{"title":6299,"path":6300,"order":5180,"children":6301},"Debugging","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Fprogramming\u002Fdebugging-flows",[],{"title":6303,"path":6304,"order":5180,"children":6305},"If-Else","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Fprogramming\u002Fif-else",[],{"title":6307,"path":6308,"order":5180,"children":6309},"Loop","\u002Fdocs\u002Fnode-red\u002Fgetting-started\u002Fprogramming\u002Floop",[],{"title":6311,"path":6312,"order":283,"children":6313},"Core nodes","\u002Fdocs\u002Fnode-red\u002Fcore-nodes",[6314,6350,6390,6432,6452,6476],{"title":6315,"path":6316,"order":271,"children":6317},"Common nodes","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fcommon",[6318,6322,6326,6330,6334,6338,6342,6346],{"title":6319,"path":6320,"order":271,"children":6321},"Inject","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fcommon\u002Finject",[],{"title":6323,"path":6324,"order":277,"children":6325},"Debug","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fcommon\u002Fdebug",[],{"title":6327,"path":6328,"order":283,"children":6329},"Complete","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fcommon\u002Fcomplete",[],{"title":6331,"path":6332,"order":289,"children":6333},"Catch","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fcommon\u002Fcatch",[],{"title":6335,"path":6336,"order":295,"children":6337},"Status","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fcommon\u002Fstatus",[],{"title":6339,"path":6340,"order":301,"children":6341},"Link","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fcommon\u002Flink",[],{"title":6343,"path":6344,"order":307,"children":6345},"Comment","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fcommon\u002Fcomment",[],{"title":6347,"path":6348,"order":386,"children":6349},"Unknown","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fcommon\u002Funknown",[],{"title":6351,"path":6352,"order":277,"children":6353},"Function nodes","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Ffunction",[6354,6358,6362,6366,6370,6374,6378,6382,6386],{"title":6355,"path":6356,"order":271,"children":6357},"Function","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Ffunction\u002Ffunction",[],{"title":6359,"path":6360,"order":277,"children":6361},"Switch","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Ffunction\u002Fswitch",[],{"title":6363,"path":6364,"order":283,"children":6365},"Change","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Ffunction\u002Fchange",[],{"title":6367,"path":6368,"order":289,"children":6369},"Range","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Ffunction\u002Frange",[],{"title":6371,"path":6372,"order":295,"children":6373},"Template","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Ffunction\u002Ftemplate",[],{"title":6375,"path":6376,"order":301,"children":6377},"Delay","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Ffunction\u002Fdelay",[],{"title":6379,"path":6380,"order":307,"children":6381},"Trigger","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Ffunction\u002Ftrigger",[],{"title":6383,"path":6384,"order":386,"children":6385},"Exec","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Ffunction\u002Fexec",[],{"title":6387,"path":6388,"order":392,"children":6389},"Filter","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Ffunction\u002Ffilter",[],{"title":6391,"path":6392,"order":283,"children":6393},"Network nodes","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fnetwork",[6394,6398,6402,6405,6408,6412,6416,6420,6424,6428],{"title":6395,"path":6396,"order":271,"children":6397},"TLS","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fnetwork\u002Ftls",[],{"title":6399,"path":6400,"order":277,"children":6401},"HTTP Proxy","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fnetwork\u002Fhttp-proxy",[],{"title":5902,"path":6403,"order":283,"children":6404},"\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fnetwork\u002Fmqtt-in",[],{"title":5906,"path":6406,"order":289,"children":6407},"\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fnetwork\u002Fmqtt-out",[],{"title":6409,"path":6410,"order":295,"children":6411},"HTTP in","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fnetwork\u002Fhttp-in",[],{"title":6413,"path":6414,"order":301,"children":6415},"HTTP request","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fnetwork\u002Fhttp-request",[],{"title":6417,"path":6418,"order":307,"children":6419},"WebSocket","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fnetwork\u002Fwebsocket",[],{"title":6421,"path":6422,"order":386,"children":6423},"TCP in","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fnetwork\u002Ftcp-in",[],{"title":6425,"path":6426,"order":392,"children":6427},"UDP In","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fnetwork\u002Fudp-in",[],{"title":6429,"path":6430,"order":5705,"children":6431},"UDP Out","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fnetwork\u002Fudp-out",[],{"title":6433,"path":6434,"order":289,"children":6435},"Sequence nodes","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fsequence",[6436,6440,6444,6448],{"title":6437,"path":6438,"order":271,"children":6439},"Split","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fsequence\u002Fsplit",[],{"title":6441,"path":6442,"order":277,"children":6443},"Sort","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fsequence\u002Fsort",[],{"title":6445,"path":6446,"order":283,"children":6447},"Batch","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fsequence\u002Fbatch",[],{"title":6449,"path":6450,"order":289,"children":6451},"Join","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fsequence\u002Fjoin",[],{"title":6453,"path":6454,"order":295,"children":6455},"Parser nodes","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fparsers",[6456,6460,6464,6468,6472],{"title":6457,"path":6458,"order":271,"children":6459},"CSV","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fparsers\u002Fcsv",[],{"title":6461,"path":6462,"order":277,"children":6463},"HTML","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fparsers\u002Fhtml",[],{"title":6465,"path":6466,"order":283,"children":6467},"JSON","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fparsers\u002Fjson",[],{"title":6469,"path":6470,"order":289,"children":6471},"XML","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fparsers\u002Fxml",[],{"title":6473,"path":6474,"order":295,"children":6475},"YAML","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fparsers\u002Fyaml",[],{"title":6477,"path":6478,"order":301,"children":6479},"Storage nodes","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fstorage",[6480,6484],{"title":6481,"path":6482,"order":271,"children":6483},"Write File","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fstorage\u002Fwrite-file",[],{"title":6485,"path":6486,"order":277,"children":6487},"Read File","\u002Fdocs\u002Fnode-red\u002Fcore-nodes\u002Fstorage\u002Fread-file",[],{"title":6489,"path":6490,"order":289,"children":6491},"Communication protocols","\u002Fdocs\u002Fnode-red\u002Fprotocol",[6492,6496,6500,6503,6507,6511],{"title":6493,"path":6494,"order":5180,"children":6495},"AMQP","\u002Fdocs\u002Fnode-red\u002Fprotocol\u002Famqp",[],{"title":6497,"path":6498,"order":5180,"children":6499},"LwM2M","\u002Fdocs\u002Fnode-red\u002Fprotocol\u002Flwm2m",[],{"title":5891,"path":6501,"order":5180,"children":6502},"\u002Fdocs\u002Fnode-red\u002Fprotocol\u002Fmodbus",[],{"title":6504,"path":6505,"order":5180,"children":6506},"MQTT","\u002Fdocs\u002Fnode-red\u002Fprotocol\u002Fmqtt",[],{"title":6508,"path":6509,"order":5180,"children":6510},"OPC-UA","\u002Fdocs\u002Fnode-red\u002Fprotocol\u002Fopc-ua",[],{"title":6512,"path":6513,"order":5180,"children":6514},"Websocket","\u002Fdocs\u002Fnode-red\u002Fprotocol\u002Fwebsocket",[],{"title":6516,"path":6517,"order":295,"children":6518},"Databases","\u002Fdocs\u002Fnode-red\u002Fdatabase",[6519,6523,6527,6531,6535,6537,6540,6543,6547],{"title":6520,"path":6521,"order":5180,"children":6522},"DynamoDB","\u002Fdocs\u002Fnode-red\u002Fdatabase\u002Fdynamodb",[],{"title":6524,"path":6525,"order":5180,"children":6526},"Firebase","\u002Fdocs\u002Fnode-red\u002Fdatabase\u002Ffirebase",[],{"title":6528,"path":6529,"order":5180,"children":6530},"InfluxDB","\u002Fdocs\u002Fnode-red\u002Fdatabase\u002Finfluxdb",[],{"title":6532,"path":6533,"order":5180,"children":6534},"MongoDB","\u002Fdocs\u002Fnode-red\u002Fdatabase\u002Fmongodb",[],{"title":30,"path":5182,"order":5180,"children":6536},[],{"title":51,"path":6538,"order":5180,"children":6539},"\u002Fdocs\u002Fnode-red\u002Fdatabase\u002Fpostgresql",[],{"title":5914,"path":6541,"order":5180,"children":6542},"\u002Fdocs\u002Fnode-red\u002Fdatabase\u002Fredis",[],{"title":6544,"path":6545,"order":5180,"children":6546},"SQLite","\u002Fdocs\u002Fnode-red\u002Fdatabase\u002Fsqlite",[],{"title":6548,"path":6549,"order":5180,"children":6550},"TimescaleDB","\u002Fdocs\u002Fnode-red\u002Fdatabase\u002Ftimescaledb",[],{"title":6552,"path":6553,"order":301,"children":6554},"Integration technologies","\u002Fdocs\u002Fnode-red\u002Fintegration-technologies",[6555,6559,6563],{"title":6556,"path":6557,"order":5180,"children":6558},"GraphQL API","\u002Fdocs\u002Fnode-red\u002Fintegration-technologies\u002Fgraphql",[],{"title":6560,"path":6561,"order":5180,"children":6562},"REST API","\u002Fdocs\u002Fnode-red\u002Fintegration-technologies\u002Frest",[],{"title":6564,"path":6565,"order":5180,"children":6566},"Webhook","\u002Fdocs\u002Fnode-red\u002Fintegration-technologies\u002Fwebhook",[],{"title":6568,"path":6569,"order":307,"children":6570},"Notification services","\u002Fdocs\u002Fnode-red\u002Fnotification",[6571,6575,6579],{"title":6572,"path":6573,"order":5180,"children":6574},"Discord","\u002Fdocs\u002Fnode-red\u002Fnotification\u002Fdiscord",[],{"title":6576,"path":6577,"order":5180,"children":6578},"Email","\u002Fdocs\u002Fnode-red\u002Fnotification\u002Femail",[],{"title":6580,"path":6581,"order":5180,"children":6582},"Telegram","\u002Fdocs\u002Fnode-red\u002Fnotification\u002Ftelegram",[],{"title":6584,"path":6585,"order":386,"children":6586},"Hardware","\u002Fdocs\u002Fnode-red\u002Fhardware",[6587,6591,6595,6599,6603,6607],{"title":6588,"path":6589,"order":5180,"children":6590},"BLIIOT ARMxy BL340","\u002Fdocs\u002Fnode-red\u002Fhardware\u002Farmxy-bl340",[],{"title":6592,"path":6593,"order":5180,"children":6594},"Opto-22 Groov Epic","\u002Fdocs\u002Fnode-red\u002Fhardware\u002Fopto-22-groove-rio-7-mm2001-10",[],{"title":6596,"path":6597,"order":5180,"children":6598},"Raspberry Pi 4","\u002Fdocs\u002Fnode-red\u002Fhardware\u002Fraspberry-pi-4",[],{"title":6600,"path":6601,"order":5180,"children":6602},"Raspberry Pi 5","\u002Fdocs\u002Fnode-red\u002Fhardware\u002Fraspberry-pi-5",[],{"title":6604,"path":6605,"order":5180,"children":6606},"Robustel EG5120","\u002Fdocs\u002Fnode-red\u002Fhardware\u002Frobustel-eg5120",[],{"title":6608,"path":6609,"order":5180,"children":6610},"Siemens IoT2050","\u002Fdocs\u002Fnode-red\u002Fhardware\u002Fsiemens-iot-2050",[],{"title":6612,"path":6613,"order":392,"children":6614},"Peripheral devices","\u002Fdocs\u002Fnode-red\u002Fperipheral",[6615,6619,6623,6627],{"title":6616,"path":6617,"order":5180,"children":6618},"Arduino","\u002Fdocs\u002Fnode-red\u002Fperipheral\u002Fardiuno",[],{"title":6620,"path":6621,"order":5180,"children":6622},"Barcode Scanner","\u002Fdocs\u002Fnode-red\u002Fperipheral\u002Fbarcodescanner",[],{"title":6624,"path":6625,"order":5180,"children":6626},"ESP32","\u002Fdocs\u002Fnode-red\u002Fperipheral\u002Fesp32",[],{"title":6628,"path":6629,"order":5180,"children":6630},"Webcam","\u002Fdocs\u002Fnode-red\u002Fperipheral\u002Fwebcam",[],{"title":6632,"path":6633,"order":5705,"children":6634},"Terminology","\u002Fdocs\u002Fnode-red\u002Fterminology",[],{"title":6636,"path":6637,"order":6638,"children":6639},"Keyboard shortcuts","\u002Fdocs\u002Fnode-red\u002Fkeyboard",11,[],1788888665862]