(host, port string)
| 38 | ) |
| 39 | |
| 40 | func msConnectionString(host, port string) string { |
| 41 | return fmt.Sprintf("sqlserver://sa:%v@%v:%v?database=master", saPassword, host, port) |
| 42 | } |
| 43 | |
| 44 | func msConnectionStringMsiWithPassword(host, port string, useMsi bool) string { |
| 45 | return fmt.Sprintf("sqlserver://sa:%v@%v:%v?database=master&useMsi=%t", saPassword, host, port, useMsi) |
no outgoing calls
no test coverage detected
searching dependent graphs…