Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Access to SQLServer with Node.js on Linux

I'm trying to write a REST service with Node.js and Express and I need to connect to a SLQServer 2000 database. I've tried the Microsoft connector but it's not working on linux, according to them:

The Microsoft Driver for Node.JS for SQL Server is currently available as a preview release, and relies on run-time components that are only available on the Microsoft Windows and Windows Azure operating systems.

I've also tried node.js's modules tdm and tedious with no success... Any idea?

like image 372
Kalimaha Avatar asked Aug 08 '12 10:08

Kalimaha


1 Answers

Check out tedious again. Version 0.2 fixed compatibility with TDS 7.1 (SQL Server 2000).

like image 185
Ben Avatar answered Sep 20 '22 21:09

Ben