Linux系统下,node.js怎么远程连接SqlServer
发布于 7个月前 作者 HaronCho 725 次浏览

RT,知道的大神给下思路啊。

6 回复

我曾经使用过node-mssql
它基于TDS协议,不依赖于win32,linux上可以使用。

可以了,谢谢你啊

我是这样写的: var config = { user: 'ausp’, password: 'super’, server: 'http://192.168.1.241’, // You can use ‘localhost\instance’ to connect to named instance database: 'fys120’, //dbName? options: { encrypt: true // Use this if you’re on Windows Azure } }

还这样写了: var config = { user: 'ausp’, password: 'super’, server: 'http://192.168.1.241\fys120’, // You can use ‘localhost\instance’ to connect to named instance database: 'sqlserver’, options: { encrypt: true // Use this if you’re on Windows Azure } }

都连接不上,帮忙看看问题在哪里啊,谢谢你

sqlserver是2000版本的,可以吗?我看msnodesql和Tedious都是支持sqlserver2005及以上的

回到顶部