Dia antes primera install

This commit is contained in:
2025-12-08 15:20:28 -06:00
commit 1416478c9c
4130 changed files with 886376 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<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>
<script type="text/html" data-help-name="mysql">
<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.
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>
<p>Typically the returned payload will be an array of the result rows. <b>Note</b>:
these are of type <i>RowDataPacket</i>, and not a completely standard object.</p>
<p>If nothing is found for the key then <i>null</i> is returned,</p>
<p>The reconnect timeout in milliseconds can be changed by adding a line in <b>settings.js</b>
<pre>mysqlReconnectTime: 30000,</pre></p>
</script>

View File

@@ -0,0 +1,25 @@
{
"mysql": {
"label": {
"host": "Host",
"port": "Port",
"user": "User",
"password": "Password",
"database": "Database",
"timezone": "Timezone",
"charset": "Charset"
},
"status": {
"badping": "Bad Ping",
"error": "Error",
"ok": "OK",
"notconnected": "not yet connected"
},
"errors": {
"notstring": "the query is not defined as a string",
"notconnected": "Database not connected",
"notconfigured": "MySQL database not configured"
},
"tip": "Tip: The timezone should be specified as &#177;hh:mm or leave blank for 'local'."
}
}

View File

@@ -0,0 +1,18 @@
<script type="text/html" data-help-name="MySQLdatabase">
<p>データベースにアクセスするための認証情報を追加します</p>
<p>タイムゾーンにはGMT, EST5EDT, UTC のような値を設定します</p>
<p>文字セットのデフォルトは古い3バイトのMysql UTF8です絵文字などをサポートする必要がある場合はUTF8MB4 を使用してください</p>
</script>
<script type="text/html" data-help-name="mysql">
<p>MySQLデータベースに対するアクセスを提供します</p>
<p>このノードでは設定したデータベースに対して <b>クエリ</b> INSERTSDELETES
その性質上SQLインジェクションが可能になりますので<i>ご注意ください</i></p>
<p><code>msg.topic</code> にはデータベースに対する <i>クエリ</i> を指定する必要がありますまた結果は <code>msg.payload</code> </p>
<p><code>msg.payload</code> topic </p>
<p>通常返されるペイロードは結果行の配列となります <b></b>: これらは<i>RowDataPacket</i>型であり完全な標準オブジェクトではありません</p>
<p>キーに該当するものが見つからない場合<i>null</i> </p>
<p>再接続のタイムアウトミリ秒 <b>settings.js</b> 1
<pre>mysqlReconnectTime: 30000,</pre></p>
</script>

View File

@@ -0,0 +1,24 @@
{
"mysql": {
"label": {
"host": "ホスト",
"port": "ポート",
"user": "ユーザー",
"password": "パスワード",
"database": "データベース",
"timezone": "タイムゾーン",
"charset": "文字セット"
},
"status": {
"badping": "Bad Ping",
"error": "エラー",
"ok": "OK",
"notconnected": "未接続"
},
"errors": {
"notstring": "クエリが文字列として定義されていません",
"notconnected": "データベースに接続できません",
"notconfigured": "MySQLデータベース未設定"
}
}
}