Add support for Encrypt=Strict for TDS 8.0 connections with SQL Server 2022 (#21256)

This commit is contained in:
Cheena Malhotra
2023-02-10 10:34:36 -08:00
committed by GitHub
parent c75628639c
commit 3fb8d57d25
13 changed files with 256 additions and 24 deletions

View File

@@ -57,6 +57,20 @@ export enum AuthenticationType {
None = 'None'
}
/*
* Actions for the connection dialog to show/hide connection options.
*/
export enum Actions {
/**
* Shows a connection option
*/
Show = 'show',
/**
* Hides a connection option
*/
Hide = 'hide'
}
/* CMS constants */
export const cmsProviderName = 'MSSQL-CMS';