mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-30 09:35:39 -05:00
* specifies object handling for all current providers * implements the same for column dragndrop * adjusted test * adds pgsql provider name constant
35 lines
1.2 KiB
TypeScript
35 lines
1.2 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
// constants
|
|
export const sqlConfigSectionName = 'sql';
|
|
export const outputChannelName = 'MSSQL';
|
|
|
|
/* Memento constants */
|
|
export const capabilitiesOptions = 'OPTIONS_METADATA';
|
|
|
|
export const mssqlProviderName = 'MSSQL';
|
|
export const pgsqlProviderName = 'PGSQL';
|
|
export const anyProviderName = '*';
|
|
export const connectionProviderContextKey = 'connectionProvider';
|
|
|
|
export const applicationName = 'azdata';
|
|
|
|
export const defaultEngine = 'defaultEngine';
|
|
|
|
export const passwordChars = '***************';
|
|
|
|
/* authentication types */
|
|
export const sqlLogin = 'SqlLogin';
|
|
export const integrated = 'Integrated';
|
|
export const azureMFA = 'AzureMFA';
|
|
export const azureMFAAndUser = 'AzureMFAAndUser';
|
|
export const dstsAuth = 'dstsAuth';
|
|
|
|
/* CMS constants */
|
|
export const cmsProviderName = 'MSSQL-CMS';
|
|
|
|
export const UNSAVED_GROUP_ID = 'unsaved';
|