Skip to content

Commit 678deba

Browse files
committed
docs: update README with new connection string aliases and v1.5.9 bump
1 parent d4871f1 commit 678deba

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
<Authors>vkuttyp</Authors>
88
<PackageLicenseExpression>MIT</PackageLicenseExpression>
99
<RepositoryUrl>https://github.com/vkuttyp/CosmoSQLClient-Dotnet</RepositoryUrl>
10-
<Version>1.5.8</Version>
10+
<Version>1.5.9</Version>
1111
</PropertyGroup>
1212
</Project>

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -486,15 +486,15 @@ public interface ISqlDatabase
486486

487487
| Key | Default | Description |
488488
|---|---|---|
489-
| `Server` || `host,port` or `host` (default port 1433) or `HOST\INSTANCE` |
490-
| `Database` || Initial catalog / database name |
491-
| `User Id` || SQL Server login username |
492-
| `Password` || SQL Server login password |
493-
| `Encrypt` | `False` | `True` to enable TLS |
494-
| `TrustServerCertificate` | `False` | Skip certificate validation (dev/test only) |
495-
| `Connect Timeout` | `30` | Connection timeout in seconds |
496-
| `Application Name` | `CosmoSQLClient` | Appears in `sys.dm_exec_sessions` |
497-
| `Integrated Security` | `False` | `True` for NTLM / Windows auth |
489+
| `Server` || Host and port. Aliases: `Data Source`, `Address`, `Addr`. Supports `(local)` and `.` shorthands. |
490+
| `Database` || Database name. Aliases: `Initial Catalog`. |
491+
| `User Id` || Username. Aliases: `UID`, `User`. |
492+
| `Password` || Password. Aliases: `PWD`. |
493+
| `Encrypt` | `True` | `True` to enable TLS (default is `True`). |
494+
| `TrustServerCertificate` | `False` | Skip certificate validation (dev/test only). |
495+
| `Connect Timeout` | `30` | Connection timeout in seconds. |
496+
| `Application Name` | `CosmoSQLClient` | Appears in `sys.dm_exec_sessions`. |
497+
| `Integrated Security` | `False` | Set to `True` for Windows auth (Requires User Id/Password for NTLM; SSPI not yet supported). |
498498

499499
**Examples:**
500500

0 commit comments

Comments
 (0)