MSSQL LocalDB with Tedious / TDS

Does anyone know how to configure Tedious ( https://github.com/pekim/tedious ) to connect to Microsoft SQL EXPRESS LocalDB? I do not work.

Since Tedious uses the TDS protocol, I think the question should be: Does MSSQL support LocalDB TDS?

thank you very much Jürgen

+4
source share
1 answer

To answer your question, no. From reading a little by specification, it is "used to transfer data between the database server and the client." My gut says localdb is not using the same protocol. I opened the problem on GitHub just for verification.

https://github.com/pekim/tedious/issues/348

+1
source

All Articles