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
Copy file name to clipboardExpand all lines: docs/tools/visual-studio-code/create-azure-function-with-mssql-OE.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,8 +15,7 @@ ms.date: 8/24/2022
15
15
[!INCLUDE [SQL Server ASDB, ASDBMI, ASDW ](../../includes/applies-to-version/sql-asdb-asdbmi-asa.md)]
16
16
17
17
## Overview
18
-
Microsoft SQL Bindings for VS Code enable users to develop Azure Functions with Azure SQL bindings,
19
-
see further documentation [here](create-azure-function-with-mssql.md).
18
+
Microsoft SQL Bindings for VS Code enable users to develop Azure Functions with Azure SQL bindings, see further documentation [here](create-azure-function-with-mssql.md).
20
19
21
20
## From the Object Explorer
22
21
To create an Azure Function from a specific `Table` or `View` in object explorer (OE), right-click on a table or view from a connected server in SQL Serve object explorer and select `Create Azure Function with SQL Binding.`
@@ -50,25 +49,26 @@ If you already have connection strings stored in the local.settings.json, then t
50
49
51
50
:::image type="content" alt-text="Prompt to select connection string setting" source="./media/create-azure-function-with-mssql/create-new-sql-connection-string-setting.png":::
52
51
53
-
If you `Create new local app setting` then the extension will prompt you to enter the connection string name and value.
52
+
If you select `Create new local app setting` then the extension will prompt you to enter the connection string name and value.
54
53
55
54
:::image type="content" alt-text="Prompt to enter connection string" source="./media/create-azure-function-with-mssql/enter-connection-string-setting-name.png":::
56
55
57
56
If you're creating the `Azure Function with SQL Binding` to an existing Azure Function project, then the extension will prompt you whether you would like to include the password for the connection string in the local.settings.json file.
58
57
59
58
:::image type="content" alt-text="Prompt to save the password to the SQL connection string" source="./media/create-azure-function-with-mssql/password-prompt.png":::
60
59
61
-
If `Yes`, then the password will be saved to the local.settings.json file. If `No` then the extension will warn you that the password won't be saved to the local.settings.json file, and you'll need to manually add the password later to the local.settings.json file.
60
+
If `Yes`, then the password will be saved to the local.settings.json file. If `No` then the extension will warn you that the password won't be saved to the local.settings.json file (shown below), and you'll need to manually add the password later to the local.settings.json file.
62
61
63
62
:::image type="content" alt-text="Warning to add password to SQL connection string later manually" source="./media/create-azure-function-with-mssql/do-not-save-password.png":::
64
63
65
64
The extension will then prompt you to provide the namespace for the Azure Function.
66
65
67
66
:::image type="content" alt-text="Prompt for namespace for the Azure Function" source="./media/create-azure-function-with-mssql/namespace-for-function.png":::
68
67
69
-
If you're creating a brand new Azure Function project with SQL binding, then the extension will prompt whether you would like to include the password for the connection string in the local.settings.json file (discussed here).
68
+
If you're creating a brand new Azure Function project with SQL binding, then the extension will prompt whether you would like to include the password for the connection string in the local.settings.json file.
70
69
71
70
A progress notification will appear to indicate that the Azure Function has completed.
71
+
72
72
:::image type="content" alt-text="Finished creating Azure Function Project" source="./media/create-azure-function-with-mssql/finished-creating-project.png":::
73
73
74
74
Once the Azure Function is created, the extension will generate the code either for an `Input` or `Output` binding shown [here](create-azure-function-with-mssql.md#generated-code-for-azure-functions-with-sql-bindings).
Copy file name to clipboardExpand all lines: docs/tools/visual-studio-code/create-azure-function-with-mssql-command-palette.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ ms.date: 8/24/2022
15
15
[!INCLUDE [SQL Server ASDB, ASDBMI, ASDW ](../../includes/applies-to-version/sql-asdb-asdbmi-asa.md)]
16
16
17
17
## Overview
18
-
Microsoft SQL Bindings for VS Code enable users to develop Azure Functions with Azure SQL bindings
18
+
Microsoft SQL Bindings for VS Code enable users to develop Azure Functions with Azure SQL bindings, see further documentation [here](create-azure-function-with-mssql.md).
19
19
20
20
## From the Command Palette
21
21
Run the `MS SQL: Create Azure Function with SQL Binding` command from the command palette to create a new function with a SQL binding.
@@ -53,24 +53,25 @@ If you already have connection strings stored in the local.settings.json, then t
53
53
54
54
:::image type="content" alt-text="Prompt to select connection string setting" source="./media/create-azure-function-with-mssql/create-new-sql-connection-string-setting.png":::
55
55
56
-
If you `Create new local app setting` then the extension will prompt you to enter the connection string name and value.
56
+
If you select `Create new local app setting` then the extension will prompt you to enter the connection string name and value.
57
57
58
58
:::image type="content" alt-text="Prompt to enter connection string" source="./media/create-azure-function-with-mssql/enter-connection-string-setting-name.png":::
59
59
60
60
If you're creating the `Azure Function with SQL Binding` to an existing Azure Function project, then the extension will prompt you whether you would like to include the password for the connection string in the local.settings.json file.
61
61
62
62
:::image type="content" alt-text="Prompt to save the password to the SQL connection string" source="./media/create-azure-function-with-mssql/password-prompt.png":::
63
63
64
-
If `Yes`, then the password will be saved to the local.settings.json file. If `No` then the extension will warn you that the password won't be saved to the local.settings.json file, and you'll need to manually add the password later to the local.settings.json file.
64
+
If `Yes`, then the password will be saved to the local.settings.json file. If `No` then the extension will warn you that the password won't be saved to the local.settings.json file (shown below), and you'll need to manually add the password later to the local.settings.json file.
65
65
66
66
:::image type="content" alt-text="Warning to add password to SQL connection string later manually" source="./media/create-azure-function-with-mssql/do-not-save-password.png":::
67
67
68
68
The extension will then prompt you to provide the namespace for the Azure Function.
69
69
:::image type="content" alt-text="Prompt for namespace for the Azure Function" source="./media/create-azure-function-with-mssql/namespace-for-function.png":::
70
70
71
-
If you're creating a brand new Azure Function project with SQL binding, then the extension will prompt whether you would like to include the password for the connection string in the local.settings.json file (discussed here).
71
+
If you're creating a brand new Azure Function project with SQL binding, then the extension will prompt whether you would like to include the password for the connection string in the local.settings.json file.
72
72
73
73
A progress notification will appear to indicate that the Azure Function has completed.
74
+
74
75
:::image type="content" alt-text="Finished creating Azure Function Project" source="./media/create-azure-function-with-mssql/finished-creating-project.png":::
75
76
76
77
Once the Azure Function is created, the extension will generate the code either for an `Input` or `Output` binding shown [here](create-azure-function-with-mssql.md#generated-code-for-azure-functions-with-sql-bindings).
@@ -90,7 +91,7 @@ If you already have connection strings stored in the local.settings.json, then t
90
91
91
92
:::image type="content" alt-text="Prompt to select connection string setting" source="./media/create-azure-function-with-mssql/create-new-sql-connection-string-setting.png":::
92
93
93
-
If you `Create new local app setting` then the extension will prompt you to enter the connection string name and value.
94
+
If you select `Create new local app setting` then the extension will prompt you to enter the connection string name and value.
94
95
95
96
:::image type="content" alt-text="Prompt to enter connection string" source="./media/create-azure-function-with-mssql/enter-connection-string-setting-name.png":::
96
97
@@ -111,7 +112,7 @@ The extension will then prompt you whether you would like to include the passwor
111
112
112
113
:::image type="content" alt-text="Prompt to save the password to the SQL connection string" source="./media/create-azure-function-with-mssql/password-prompt.png":::
113
114
114
-
If `Yes`, then the password will be saved to the local.settings.json file. If `No` then the extension will warn you that the password won't be saved to the local.settings.json file, and you'll need to manually add the password later to the local.settings.json file.
115
+
If `Yes`, then the password will be saved to the local.settings.json file. If `No` then the extension will warn you that the password won't be saved to the local.settings.json file (shown below), and you'll need to manually add the password later to the local.settings.json file.
115
116
116
117
:::image type="content" alt-text="Warning to add password to SQL connection string later manually" source="./media/create-azure-function-with-mssql/do-not-save-password.png":::
Copy file name to clipboardExpand all lines: docs/tools/visual-studio-code/create-azure-function-with-mssql.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ Table OE Command:
28
28
View OE Command:
29
29
:::image type="content" alt-text="Screenshot of object explorer context menu to add a SQL binding from View." source="./media/create-azure-function-with-mssql/create-function-view-object-explorer.png":::
30
30
31
-
See further documentation to create an Azure function with SQL bindings from the command palette[here](create-azure-function-with-mssql-OE.md).
31
+
See further documentation to create an Azure function with SQL bindings from the SQL Server object explorer[here](create-azure-function-with-mssql-OE.md).
32
32
33
33
## From the Command Palette
34
34
Run the `MS SQL: Create Azure Function with SQL Binding` command from the command palette to create a new function with a SQL binding.
0 commit comments