1
0
mirror of https://github.com/node-red/node-red-nodes.git synced 2023-10-10 13:36:58 +02:00

Fix sqlite repo link

This commit is contained in:
Dave Conway-Jones 2019-11-13 13:31:08 +00:00
parent 9f27cda34f
commit 8547f26a45
No known key found for this signature in database
GPG Key ID: 302A6725C594817F
2 changed files with 6 additions and 6 deletions

View File

@ -1,13 +1,13 @@
{ {
"name": "node-red-node-sqlite", "name": "node-red-node-sqlite",
"version": "0.4.0", "version": "0.4.1",
"description": "A sqlite node for Node-RED", "description": "A sqlite node for Node-RED",
"dependencies": { "dependencies": {
"sqlite3": "^4.1.0" "sqlite3": "^4.1.0"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/node-red/node-red-nodes/storage/sqlite/" "url": "https://https://github.com/node-red/node-red-nodes/tree/master/storage/sqlite"
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"keywords": [ "keywords": [

View File

@ -1,5 +1,5 @@
<script type="text/x-red" data-template-name="sqlitedb"> <script type="text/html" data-template-name="sqlitedb">
<div class="form-row"> <div class="form-row">
<label for="node-config-input-db"><i class="fa fa-database"></i> Database</label> <label for="node-config-input-db"><i class="fa fa-database"></i> Database</label>
<input type="text" id="node-config-input-db" placeholder="/tmp/sqlite"> <input type="text" id="node-config-input-db" placeholder="/tmp/sqlite">
@ -30,7 +30,7 @@
</script> </script>
<script type="text/x-red" data-template-name="sqlite"> <script type="text/html" data-template-name="sqlite">
<div class="form-row"> <div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label> <label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name"> <input type="text" id="node-input-name" placeholder="Name">
@ -59,7 +59,7 @@
</div> </div>
</script> </script>
<script type="text/x-red" data-help-name="sqlite"> <script type="text/html" data-help-name="sqlite">
<p>Allows access to a Sqlite database.</p> <p>Allows access to a Sqlite database.</p>
<p>SQL Query sets how the query is passed to the node.</p> <p>SQL Query sets how the query is passed to the node.</p>
<p>SQL Query <i>Via msg.topic</i> and <i>Fixed Statement</i> uses the <b>db.all</b> operation against the configured database. This does allow INSERTS, UPDATES and DELETES. <p>SQL Query <i>Via msg.topic</i> and <i>Fixed Statement</i> uses the <b>db.all</b> operation against the configured database. This does allow INSERTS, UPDATES and DELETES.
@ -83,7 +83,7 @@
<pre>sqliteReconnectTime: 20000,</pre></p> <pre>sqliteReconnectTime: 20000,</pre></p>
</script> </script>
<script type="text/x-red" data-help-name="sqlitedb"> <script type="text/html" data-help-name="sqlitedb">
<p>The default directory for the database file is the user's home directory through which the NR process was started. You can specify absolute path to change it.</p> <p>The default directory for the database file is the user's home directory through which the NR process was started. You can specify absolute path to change it.</p>
</script> </script>