Closed noelhibbard closed 7 years ago
I figured it out. For anyone else trying to bind the client to a specific adapter here is what I did:
var conn_params = {
CommLinks: 'TCPIP{Me=10.1.2.174;IP=10.1.1.16;ServerPort=2638}',
ServerName: 'ourserver',
UserId: 'DBA',
Password: 'sql'
};
All the same stuff we would typically stuff into a connection string. It took me a while to figure out how it expected the comlinks options to be placed in the json object.
Is there a connection parameter to specify which network adapter to bind to? I am running on Win10x64.