I would like to use MySQL with Node.js on Windows. I have tried to use node-db-mysql, but it looks like it doesn't support Windows. Is there any other MySQL driver for Node.js that works on Windows?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

I haven't used it, but https://github.com/felixge/node-mysql is at least pure javascript, so it should not have the same cross-platform concerns as the one you posted, which is a js wrapper around a c++ library.

link|improve this answer
feedback

https://github.com/sidorares/nodejs-mysql-native also works on Windows

link|improve this answer
+1 What is the main difference with this driver compared to node-mysql? – Jonas Jan 18 at 2:51
its a bit faster and supports prepared statements. I started it about at the same time felixge started his driver development and two drivers are completely independent on each other. – Andrey Sidorov Jan 18 at 4:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.