We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 874ff0f commit c2901fdCopy full SHA for c2901fd
reverse_engineering/helpers/parseConnectionString.js
@@ -49,7 +49,7 @@ const parseBasicString = ({ string = '' }) => {
49
50
return {
51
host: host,
52
- port: parsed.port,
+ port: host.includes('\\') ? null : parsed.port,
53
databaseName: parsed.database,
54
userName: parsed.user,
55
userPassword: parsed.password,
0 commit comments