Windows Azure SDK for Node.js Azure SQL Provider

I want to connect to SQL Azure using the Node.js SDK for Windows Azure, but there are no tutorials on how to configure it. Does anyone know how I can talk with SQL Azure DB using Node.js?

thank

+3
source share
3 answers

This topic is discussed here, this MSDN forum . Comment by Peren Natt, there is no official driver, but there are several community engines on the Joyent github repo . I could not find more information about this.

0
source

Last week, we released a preview version of the Microsoft driver for Node.JS for SQL Server (and Windows Azure SQL Database aka SQL Azure).

Github: https://github.com/windowsazure/node-sqlserver/

,

+3

Based on my experience, I would suggest if you really need to connect to SQL Azure, the following has a relatively richer implementation, and then any other:

https://github.com/cretz/node-tds

0
source

All Articles