--
http://nodered.org
Join us on Slack to continue the conversation: http://nodered.org/slack
---
You received this message because you are subscribed to the Google Groups "Node-RED" group.
To unsubscribe from this group and stop receiving emails from it, send an email to node-red+unsubscribe@googlegroups.com.
To post to this group, send email to node...@googlegroups.com.
Visit this group at https://groups.google.com/group/node-red.
To view this discussion on the web, visit https://groups.google.com/d/msgid/node-red/c46a2149-2df4-49aa-99b9-8d00ddfdeaeb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
How are you reading it? If using a contrib node tell us it's full name.Colin
On 18 Feb 2018 6:05 a.m., "Dark Norstein" <email.n...@gmail.com> wrote:
I want to ask something important here, i try to read mdb files (Microsoft Access database) using node-red . But, why the output of this data is some unique characters ?--How can i fix this ??anybody know how to read the data ?
http://nodered.org
Join us on Slack to continue the conversation: http://nodered.org/slack
---
You received this message because you are subscribed to the Google Groups "Node-RED" group.
To unsubscribe from this group and stop receiving emails from it, send an email to node-red+u...@googlegroups.com.
You received this message because you are subscribed to a topic in the Google Groups "Node-RED" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/node-red/PNk021ozTqg/unsubscribe.
To unsubscribe from this group and all its topics, send an email to node-red+unsubscribe@googlegroups.com.
To post to this group, send email to node...@googlegroups.com.
Visit this group at https://groups.google.com/group/node-red.
To view this discussion on the web, visit https://groups.google.com/d/msgid/node-red/CAL%3D0gLtxjDp%3D%3D4K2QGmuWL6Cy-VifK7OdYom%2Bod0%3D2Z2pJzgEA%40mail.gmail.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/node-red/CANp9x8M8djOwZSH6Z03%3DxSCRrEPp1PdOo30QomKeD-%2BK86h8RA%40mail.gmail.com.
You cannot just read the file in as if it were a text file, you need to read it with something that understands Access databases. If you were on Linux I think you could use node-red-contrib-odbc, but I see you are using Windows so that may not help. I don't use Windows so can't really help other than to suggest Googling for it, but having had a quick look myself I didn't see anything that looks particularly helpful. Maybe someone else here can help.Depending on what you are trying to do then possibly you could export the data of interest as a CSV file and read that into node-red.Personally I would advise not to use Access and not to use Windows but I realise that may not be much help to you.Colin
On 18 February 2018 at 08:43, Norse Network <email.n...@gmail.com> wrote:
and is there any way to convert mdb file into other file extension in node red ? like convert this mdb file into XML , csv, json , or something like that ?Thanks Mr. Colin
2018-02-18 14:38 GMT+07:00 Colin Law <cla...@gmail.com>:
How are you reading it? If using a contrib node tell us it's full name.Colin
On 18 Feb 2018 6:05 a.m., "Dark Norstein" <email.n...@gmail.com> wrote:
I want to ask something important here, i try to read mdb files (Microsoft Access database) using node-red . But, why the output of this data is some unique characters ?--How can i fix this ??anybody know how to read the data ?
http://nodered.org
Join us on Slack to continue the conversation: http://nodered.org/slack
---
You received this message because you are subscribed to the Google Groups "Node-RED" group.
To unsubscribe from this group and stop receiving emails from it, send an email to node-red+u...@googlegroups.com.
To post to this group, send email to node...@googlegroups.com.
Visit this group at https://groups.google.com/group/node-red.
To view this discussion on the web, visit https://groups.google.com/d/msgid/node-red/c46a2149-2df4-49aa-99b9-8d00ddfdeaeb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
You received this message because you are subscribed to a topic in the Google Groups "Node-RED" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/node-red/PNk021ozTqg/unsubscribe.
To unsubscribe from this group and all its topics, send an email to node-red+u...@googlegroups.com.
To post to this group, send email to node...@googlegroups.com.
Visit this group at https://groups.google.com/group/node-red.
To view this discussion on the web, visit https://groups.google.com/d/msgid/node-red/CAL%3D0gLtxjDp%3D%3D4K2QGmuWL6Cy-VifK7OdYom%2Bod0%3D2Z2pJzgEA%40mail.gmail.com.
--
http://nodered.org
Join us on Slack to continue the conversation: http://nodered.org/slack
---
You received this message because you are subscribed to the Google Groups "Node-RED" group.
To unsubscribe from this group and stop receiving emails from it, send an email to node-red+u...@googlegroups.com.
To post to this group, send email to node...@googlegroups.com.
Visit this group at https://groups.google.com/group/node-red.
To unsubscribe from this group and stop receiving emails from it, send an email to node-red+unsubscribe@googlegroups.com.
To post to this group, send email to node...@googlegroups.com.
Visit this group at https://groups.google.com/group/node-red.
To view this discussion on the web, visit https://groups.google.com/d/msgid/node-red/77504faa-a543-4155-a971-29d01091bcc6%40googlegroups.com.
var edge = global.get('edge');
var helloWorld = edge.func(function () {/*
async (input) => {
return ".NET Welcomes " + input.ToString();
}
*/});
helloWorld('JavaScript', function (error, result) {
if (error) throw error;
console.log(result);
msg.payload = result;
node.send(msg)
});