Showing results for February 2023 - Azure SQL Devs’ Corner

Feb 28, 2023
0
1

Getting Started with Azure SQL Bindings: Part 1

Brian Spendolini
Brian Spendolini

Expanding on the excellent post by Drew Skwiers-Koballa; Developing with Azure SQL bindings and Azure SQL trigger for Azure Functions, I'd like to take a chance to walk you through creating your first SQL Binding using a completely local development environment. Part 1 will cover creating a SQL Binding to get data from an Azure SQL Database. Parts...

Azure SQLVisual Studio CodeAzure Functions
Feb 26, 2023
0
2

Using Python and Azure Functions to send data from Azure SQL Database

Drew Skwiers-Koballa
Drew Skwiers-Koballa

When building applications on Azure SQL, one of the most flexible ways to send data from your database to other systems is to use Azure Functions. Azure Functions are serverless functions that can be triggered by a variety of events, including HTTP requests, timers, and Azure SQL Database changes. In this article, we will discuss how to send data ...

Azure SQLPython