We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6983b91 commit 480e473Copy full SHA for 480e473
mssql.go
@@ -87,11 +87,7 @@ func (dsnAdapter SqlServerSourceNameAdapter) GetDataSourceName(dataSource gdbc.D
87
dsn = dsn + user + ":" + password
88
}
89
90
- dsn = dsn + "@"
91
- if host == "" {
92
- return "", errors.New("host cannot be empty")
93
- }
94
- dsn = dsn + host
+ dsn = dsn + "@" + host
95
96
if port != "" {
97
dsn = dsn + ":" + port
0 commit comments