Skip to content

Commit 0887990

Browse files
authored
update driver link, install instructions (#86)
* update driver link, install instructions * correcting docs link
1 parent 091d1d8 commit 0887990

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This repo contains command line tools and go packages for working with Microsoft
44

55
## Sqlcmd
66

7-
The `sqlcmd` project aims to be a complete port of the native sqlcmd to the `go` language, utilizing the [go-mssqldb](https://github.com/denisenkom/go-mssqldb) driver. For full documentation of the tool, see https://docs.microsoft.com/sql/tools/sqlcmd-utility
7+
The `sqlcmd` project aims to be a complete port of the native sqlcmd to the `go` language, utilizing the [go-mssqldb](https://github.com/microsoft/go-mssqldb) driver. For full documentation of the tool and installation instructions, see https://docs.microsoft.com/sql/tools/go-sqlcmd-utility
88

99
### Breaking changes
1010

@@ -14,15 +14,15 @@ We will be implementing command line switches and behaviors over time. Several s
1414

1515
- The `SQLCMDPASSWORD` environment variable
1616
- The `:CONNECT` command
17-
- When prompted, the user can type the password to complete a connection (pending [#50](https://github.com/microsoft/go-sqlcmd/issues/50))
17+
- When prompted, the user can type the password to complete a connection
1818
- `-r` requires a 0 or 1 argument
1919
- `-R` switch will be removed. The go runtime does not provide access to user locale information, and it's not readily available through syscall on all supported platforms.
2020
- `-I` switch will be removed. To disable quoted identifier behavior, add `SET QUOTED IDENTIFIER OFF` in your scripts.
2121
- `-N` now takes a string value that can be one of `true`, `false`, or `disable` to specify the encryption choice. (`default` is the same as omitting the parameter)
2222
- If `-N` and `-C` are not provided, sqlcmd will negotiate authentication with the server without validating the server certificate.
2323
- If `-N` is provided but `-C` is not, sqlcmd will require validation of the server certificate. Note that a `false` value for encryption could still lead to encryption of the login packet.
2424
- If both `-N` and `-C` are provided, sqlcmd will use their values for encryption negotiation.
25-
- More information about client/server encryption negotiation can be found at <https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-tds/60f56408-0188-4cd5-8b90-25c6f2423868>
25+
- More information about client/server encryption negotiation can be found at <https://docs.microsoft.com/openspecs/windows_protocols/ms-tds/60f56408-0188-4cd5-8b90-25c6f2423868>
2626
- `-u` The generated Unicode output file will have the UTF16 Little-Endian Byte-order mark (BOM) written to it.
2727
- Some behaviors that were kept to maintain compatibility with `OSQL` may be changed, such as alignment of column headers for some data types.
2828
- All commands must fit on one line, even `EXIT`. Interactive mode will not check for open parentheses or quotes for commands and prompt for successive lines. The ODBC sqlcmd allows the query run by `EXIT(query)` to span multiple lines.
@@ -35,7 +35,7 @@ We will be implementing command line switches and behaviors over time. Several s
3535

3636
### Azure Active Directory Authentication
3737

38-
This version of sqlcmd supports a broader range of AAD authentication models, based on the [azidentity package](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/azidentity). The implementation relies on an AAD Connector in the [driver](https://github.com/denisenkom/go-mssqldb).
38+
This version of sqlcmd supports a broader range of AAD authentication models, based on the [azidentity package](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/azidentity). The implementation relies on an AAD Connector in the [driver](https://github.com/microsoft/go-mssqldb).
3939

4040
#### Command line
4141

@@ -151,7 +151,7 @@ contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additio
151151

152152
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft
153153
trademarks or logos is subject to and must follow
154-
[Microsoft's Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general).
154+
[Microsoft's Trademark & Brand Guidelines](https://www.microsoft.com/legal/intellectualproperty/trademarks/usage/general).
155155
Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
156156
Any use of third-party trademarks or logos are subject to those third-party's policies.
157157

0 commit comments

Comments
 (0)