2013-11-03 22:29:20 +01:00
|
|
|
|
2020-03-01 18:06:22 +01:00
|
|
|
<script type="text/html" data-template-name="MySQLdatabase">
|
2013-11-03 22:29:20 +01:00
|
|
|
<div class="form-row">
|
2014-07-04 18:26:20 +02:00
|
|
|
<label for="node-config-input-host"><i class="fa fa-globe"></i> Host</label>
|
2015-01-19 10:46:29 +01:00
|
|
|
<input type="text" id="node-config-input-host">
|
2013-11-03 22:29:20 +01:00
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2014-07-04 18:26:20 +02:00
|
|
|
<label for="node-config-input-port"><i class="fa fa-random"></i> Port</label>
|
2015-01-19 10:46:29 +01:00
|
|
|
<input type="text" id="node-config-input-port">
|
2013-11-03 22:29:20 +01:00
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2014-07-04 18:26:20 +02:00
|
|
|
<label for="node-config-input-user"><i class="fa fa-user"></i> User</label>
|
2015-01-19 10:46:29 +01:00
|
|
|
<input type="text" id="node-config-input-user">
|
2013-11-03 22:29:20 +01:00
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2014-07-04 18:26:20 +02:00
|
|
|
<label for="node-config-input-pass"><i class="fa fa-lock"></i> Password</label>
|
2015-01-19 10:46:29 +01:00
|
|
|
<input type="password" id="node-config-input-password">
|
2013-11-03 22:29:20 +01:00
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2014-07-04 18:26:20 +02:00
|
|
|
<label for="node-config-input-db"><i class="fa fa-database"></i> Database</label>
|
2015-01-19 10:46:29 +01:00
|
|
|
<input type="text" id="node-config-input-db">
|
2013-11-03 22:29:20 +01:00
|
|
|
</div>
|
2014-07-04 18:26:20 +02:00
|
|
|
<div class="form-row">
|
2014-12-13 00:16:40 +01:00
|
|
|
<label for="node-config-input-tz"><i class="fa fa-clock-o"></i> Timezone</label>
|
2015-01-19 10:46:29 +01:00
|
|
|
<input type="text" id="node-config-input-tz">
|
2014-07-04 18:26:20 +02:00
|
|
|
</div>
|
2020-04-18 19:03:59 +02:00
|
|
|
<div class="form-row">
|
|
|
|
<label for="node-config-input-charset"><i class="fa fa-language"></i> Charset</label>
|
|
|
|
<input type="text" id="node-config-input-charset">
|
|
|
|
</div>
|
2020-03-20 15:59:08 +01:00
|
|
|
<div class="form-row">
|
|
|
|
<label for="node-config-input-name"><i class="fa fa-tag"></i> Name</label>
|
|
|
|
<input type="text" id="node-config-input-name" placeholder="Name">
|
|
|
|
</div>
|
2013-11-03 22:29:20 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
RED.nodes.registerType('MySQLdatabase',{
|
|
|
|
category: 'config',
|
|
|
|
defaults: {
|
2020-03-20 15:59:08 +01:00
|
|
|
name: {value:""},
|
2013-11-03 22:29:20 +01:00
|
|
|
host: {value:"127.0.0.1",required:true},
|
|
|
|
port: {value:"3306",required:true},
|
2014-07-04 18:26:20 +02:00
|
|
|
db: {value:"",required:true},
|
2020-04-18 19:03:59 +02:00
|
|
|
tz: {value:""},
|
|
|
|
charset: {value:"UTF8"}
|
2013-11-03 22:29:20 +01:00
|
|
|
},
|
2015-01-19 10:46:29 +01:00
|
|
|
credentials: {
|
|
|
|
user: {type: "text"},
|
|
|
|
password: {type: "password"}
|
|
|
|
},
|
2013-11-03 22:29:20 +01:00
|
|
|
label: function() {
|
2020-03-20 15:59:08 +01:00
|
|
|
return this.name || this.db;
|
2013-11-03 22:29:20 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2020-04-18 19:03:59 +02:00
|
|
|
<script type="text/html" data-help-name="MySQLdatabase">
|
|
|
|
<p>Add the credentials for accessing your database here.</p>
|
|
|
|
<p>Timezone can be set like GMT, EST5EDT, UTC, etc</p>
|
|
|
|
<p>The Charset defaults to the "old" 3 byte Mysql UTF8. If you need support for emojis etc then use UTF8MB4.</p>
|
|
|
|
</script>
|
|
|
|
|
2013-11-03 22:29:20 +01:00
|
|
|
|
2020-03-01 18:06:22 +01:00
|
|
|
<script type="text/html" data-template-name="mysql">
|
2013-11-03 22:29:20 +01:00
|
|
|
<div class="form-row">
|
2014-07-04 18:26:20 +02:00
|
|
|
<label for="node-input-mydb"><i class="fa fa-database"></i> Database</label>
|
2013-11-03 22:29:20 +01:00
|
|
|
<input type="text" id="node-input-mydb">
|
|
|
|
</div>
|
|
|
|
<div class="form-row">
|
2014-07-04 18:26:20 +02:00
|
|
|
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
|
2013-11-03 22:29:20 +01:00
|
|
|
<input type="text" id="node-input-name" placeholder="Name">
|
|
|
|
</div>
|
|
|
|
</script>
|
|
|
|
|
2020-03-01 18:06:22 +01:00
|
|
|
<script type="text/html" data-help-name="mysql">
|
2013-11-03 22:29:20 +01:00
|
|
|
<p>Allows basic access to a MySQL database.</p>
|
|
|
|
<p>This node uses the <b>query</b> operation against the configured database. This does allow both INSERTS and DELETES.
|
2016-03-02 14:27:22 +01:00
|
|
|
By its very nature it allows SQL injection... so <i>be careful out there...</i></p>
|
|
|
|
<p><code>msg.topic</code> must hold the <i>query</i> for the database, and the result is returned in <code>msg.payload</code>.</p>
|
|
|
|
<p><code>msg.payload</code> can contain an array of values to bind to the topic.</p>
|
2013-11-03 22:29:20 +01:00
|
|
|
<p>Typically the returned payload will be an array of the result rows.</p>
|
|
|
|
<p>If nothing is found for the key then <i>null</i> is returned,</p>
|
2013-11-22 11:24:08 +01:00
|
|
|
<p>The reconnect timeout in milliseconds can be changed by adding a line to <b>settings.js</b>
|
|
|
|
<pre>mysqlReconnectTime: 30000,</pre></p>
|
2013-11-03 22:29:20 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
RED.nodes.registerType('mysql',{
|
|
|
|
category: 'storage-input',
|
|
|
|
color:"#e97b00",
|
|
|
|
defaults: {
|
|
|
|
mydb: {type:"MySQLdatabase",required:true},
|
|
|
|
name: {value:""}
|
|
|
|
},
|
|
|
|
inputs:1,
|
|
|
|
outputs:1,
|
|
|
|
icon: "db.png",
|
|
|
|
label: function() {
|
|
|
|
var levelNode = RED.nodes.node(this.mydb);
|
|
|
|
return this.name||(levelNode?levelNode.label():"mysql");
|
|
|
|
},
|
2020-03-20 15:59:08 +01:00
|
|
|
labelStyle: function() {
|
2013-11-03 22:29:20 +01:00
|
|
|
return this.name?"node_label_italic":"";
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|