Is there a configuration option for using Unix domain socket to connect to SQL Server Instance?
问题 I am attempting to link an app engine service to an instance of SQL Server on the Google Cloud Platform using this documentation My service is a nodejs application and I am using the mssql library to connect to my database. The documentation only describes using TCP/IP (an ip address): const pool = new sql.ConnectionPool({ user: '...', password: '...', server: 'localhost', database: '...' }) If I try to use localhost or 127.0.0.1 for my server , the connection fails: I need help with one of