Add Always Encrypted Parameterization Option (#10182)

This commit is contained in:
Jeff Trimmer
2020-05-05 12:01:01 -07:00
committed by GitHub
parent a7c4a259ad
commit 53cb97af9b

View File

@@ -522,6 +522,11 @@ const registryProperties: { [path: string]: IConfigurationPropertySchema; } = {
'type': 'boolean',
'default': true,
'description': localize('mssql.query.ansiNulls', "Enable SET ANSI_NULLS")
},
'mssql.query.alwaysEncryptedParameterization': {
'type': 'boolean',
'default': false,
'description': localize('mssql.query.alwaysEncryptedParameterization', "Enable Parameterization for Always Encrypted")
}
};