Set "0" as default port for new MSSQL TCP/IP connections, which leaves the port away from the connection string, enabling auto-detection. See https://www.heidisql.com/forum.php?t=34256#p36709

This commit is contained in:
Ansgar Becker
2020-08-07 07:23:07 +02:00
parent ad706f5519
commit a34e2ab690

View File

@@ -1659,7 +1659,7 @@ begin
else
Result := 3306;
end;
ngMSSQL: Result := 1433;
ngMSSQL: Result := 0; // => autodetection by driver (previously 1433)
ngPgSQL: Result := 5432;
else Result := 0;
end;