You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update README: document TLS options and .NET 8.0 upgrade
- Update OS support link from .NET 7.0 to 8.0
- Add four new TLS/encryption command-line options to OPTIONS section:
- --encrypt (true|false|strict)
- -T, --trust-server-certificate
- -H, --hostname-in-certificate
- --no-tnir
- Add comprehensive TLS/ENCRYPTION OPTIONS section with:
- Detailed explanation of each encryption option
- Security warnings for development-only features
- Practical examples for different scenarios
These options were added in recent commits to provide fine-grained
control over SQL Server connection encryption and certificate validation.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README.md
+46-1Lines changed: 46 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
Ping a SQL Server. For example to test connectivity through a firewall, testing a failover cluster or testing permissions.
4
4
5
-
This is a .NET console app and should run fine on [all supported operating systems](https://github.com/dotnet/core/blob/main/release-notes/7.0/supported-os.md): Windows, Linux and macOS.
5
+
This is a .NET console app and should run fine on [all supported operating systems](https://github.com/dotnet/core/blob/main/release-notes/8.0/supported-os.md): Windows, Linux and macOS.
6
6
7
7
## USAGE:
8
8
SQLPing <Server> [OPTIONS]
@@ -22,6 +22,10 @@ This is a .NET console app and should run fine on [all supported operating syste
22
22
-a, --failoverpartner Use a custom failover partner
23
23
-n, --nonstop Set this to true to continously ping the server. Default is ping once
24
24
-w, --wait <SECONDS> 10 How long to wait, in seconds, between non-stop pings
0 commit comments