Update SQL binding prompt string to be more clear (#16982)

* update SQL binding prompt string to be more clear

* update variable name
This commit is contained in:
Kim Santiago
2021-09-03 10:29:55 -07:00
committed by GitHub
parent 9f09f7be5d
commit 037f957741
2 changed files with 2 additions and 2 deletions

View File

@@ -452,7 +452,7 @@ export const input = localize('input', "Input");
export const output = localize('output', "Output");
export const selectBindingType = localize('selectBindingType', "Select type of binding");
export const selectAzureFunction = localize('selectAzureFunction', "Select an Azure function in the current file to add SQL binding to");
export const sqlObjectToQuery = localize('sqlObjectToQuery', "SQL object to query");
export const sqlTableOrViewToQuery = localize('sqlTableOrViewToQuery', "SQL table or view to query");
export const sqlTableToUpsert = localize('sqlTableToUpsert', "SQL table to upsert into");
export const connectionStringSetting = localize('connectionStringSetting', "Connection string setting name");
export const selectSetting = localize('selectSetting', "Select SQL connection string setting from local.settings.json");