Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any way i can get my Node.js app to communicate with Microsoft SQL? I havent seen any MS SQL drivers out there in the wild?

Im putting a very simple app together and need to be able to communicate with an existing MS SQL database (otherwise i would have gone with mongoDB or Redis)

share|improve this question
similar to this question stackoverflow.com/questions/4728385/… – John Boker Mar 1 '11 at 15:52
I did do a search for "node.js SQL Server" and variations of that string but didnt find any answers. – Khuram Malik Mar 1 '11 at 16:35

10 Answers

up vote 16 down vote accepted

We just released preview drivers for Node.JS for SQL Server connectivity. You can find them here: http://blogs.msdn.com/b/sqlphp/archive/2012/06/08/introducing-the-microsoft-driver-for-node-js-for-sql-server.aspx

share|improve this answer
this is not in npm, right? are you planning to put it there? – NicoGranelli Jun 11 '12 at 23:07
1  
I added it on NPM last week :) search.npmjs.org/#/node-sqlserver – kop48 Jun 14 '12 at 17:10
3  
This is Windows only for the moment. I suppose that most people using SQL Server or Azure are windows folks anyways, but there are quite a few that just have their existing system deep into the SQL Server world. Below mentions the user of cross platform ODBC for those that may want to keep a Linux option in their future. And MS...tisk tisk...supporting node cross platform and then this junk. – Eric Twilegar Sep 3 '12 at 4:03
1  
Just noting that the MS drivers are rather immature at this point, and that the Tedious driver seems to work better (cross platform). – Tracker1 Oct 25 '12 at 23:50

A couple of new node.js SQL server clients have just released recently. I wrote one called node-tds and there is another called tedious

share|improve this answer
Thanks for the response. Your client doesnt rely on .net in any way, is that correct? Is this in any way related to oren mazor's tds project? – Khuram Malik Jan 6 '12 at 11:55
My client is 100% native JS (actually CoffeeScript) as is Tedious. It is in no way related to Oren Mazor's project and were I better at coming up with library names, would have thought of something better and less ambiguous. – Chad Retz Jan 9 '12 at 18:35
@Chad Retz - This looks like a this may be solution for a project I am working on. Currently there is a .Net entry point through JavaScript that makes a database call and returns JavaScript. This will eliminate that slower, middle step. However, what about connection pooling, and will you be writing support for SQL Server 2008 TVP's? – ElHaix Mar 2 '12 at 2:14
1  
It looks like node-tds is dead, and tedious doesn't support parameterized queries. – Tracker1 Mar 27 '12 at 21:06

You could maybe use https://github.com/orenmazor/node-tds

share|improve this answer
Awesome. I didnt see that before. Thank you so much. – Khuram Malik Mar 1 '11 at 16:34
4  
The project description now reads *EXPERIMENTAL and currently ABANDONED* – Factor Mystic Oct 5 '11 at 17:40
This alternative github project might be of use until MS add official support. github.com/vivina/node-mssql – booyaa Dec 2 '11 at 16:19

As the existing answer is no longer under active development, and abandoned I would suggest looking into using node-odbc which seems to be working with the FreeTDS ODBC driver. Personally, I think an ODBC abstraction is probably the way to go for all RDBMS access under NodeJS.


In windows, I've been using Tedious (npm tedious) a lot. It seems to be cross-platform (unlike the MS driver) and although there are warts, when I started using it at least, it's been more reliable than the MS driver.

share|improve this answer
And why ODBC and not JDBC? – jmendeth May 28 '12 at 15:22
ODBC is OS/System level, JDBC is for Java... Java is NOT JavaScript. – Tracker1 May 29 '12 at 21:41
Yeah I know Java ≠ JavaScript, but ODBC was originally Windows-only, I think. And JDBC is an open, multiplatform standard, as well as JS. – jmendeth May 31 '12 at 11:41
Anyway, +1. This was the kind of answer I was searching for! – jmendeth May 31 '12 at 11:43
JDBC isn't directly available outside Java IIRC.. ODBC has cross platform drivers, and implementations, and is available outside Java. – Tracker1 Jun 1 '12 at 6:53

TSQLFTW - T-SQL For The WIN(dows) - by Fosco Marotto https://github.com/gfosco/tsqlftw

It is a C# and ADO .NET managed code solution, with a C++ wrapper that Node.js can import and work with.


If you know .NET you could try WCF Data Services (ADO.NET Data Services); write an WCF app for data access and use odata (REST on steroids) to interact with the database


If you are into SOA and use SQL Server 2005 you could check out the Native XML Web Services for Microsoft SQL Server 2005

http://msdn.microsoft.com/en-us/library/ms345123(v=sql.90).aspx

You could access SQL Server as a web service (HTTP, SOAP)

share|improve this answer

Microsoft (The Windows Azure Team) just released a node driver for SQL SERVER.

It has no package for npm yert, as far as I know, but it is open sourced. And the accepting community contribution too.

https://github.com/WindowsAzure/node-sqlserver

Introduction blog post here:

http://blogs.msdn.com/b/sqlphp/archive/2012/06/08/introducing-the-microsoft-driver-for-node-js-for-sql-server.aspx

share|improve this answer

(duplicating my answer from another question).

I feel the best connection option for MS-SQL Server (TDS protocol) for Node.js is Tedious which is a node native implementation of a TDS adapter. It's worth noting that this almost two years after the original question was asked.

node-tds is abandoned, node-odbc doesn't work with windows, and the MS node-sqlserver driver doesn't seem to work on non-windows.

I will say that the only thing I find a bit cumbersome is the lack of auto-complete support in my IDE for the data types of parameters. Other than that and the lack of multiple results sets it has worked very well.

share|improve this answer

There is an update from Microsoft. Here is a series of blog posts (part 1 and part 2).

share|improve this answer

If you are running on .NET look at entityspaces.js at, we are creating an entire universal ORM for Node.js that will not require a WCF JSON service ... https://github.com/EntitySpaces/entityspaces.js

If you are using MSFT backend technology you could use it now, however, we are creating a universal Node.js ORM and will have more information on that soon

share|improve this answer

that link details only a sql 2000 solution, not sql 2005 nor sql 2008, and also that code only allow sending sql text, and does not allow the execution of stored procedures.

The real solution would be to install node JS on a linux server, or on a virtual linux server on a windows machine, and then go to microsoft web site and download the JDBC java drivers and install those microsoft ms sql java jdbc drivers on either the linux server or linux virtual server.

share|improve this answer
Im not particularly comfortable with linux so i try to do as little sys admin as possible. Doing a JDBC setup sounds messy, and if there is a node driver that is available as a module that will make life so much easier. You are right that not having stored procedures support is not great. – Khuram Malik Sep 1 '11 at 11:00
1  
But these drivers are for Java only. How would you use JDBC in NodeJS? – jmendeth May 31 '12 at 11:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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