mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2026-03-13 09:24:25 +08:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user