azure-functions-sql-extension

(★ 130)

Azure SQL bindings for Azure Functions ⚡️ supports Azure SQL Database, Azure SQL Managed Instance, and SQL Server 2016+

  • .editorconfig
  • .gitignore
  • .npmrc
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • Directory.Build.props
  • Directory.Packages.props
  • global.json
  • LICENSE
  • NOTICE.txt
  • nuget.config
  • README.md
  • SECURITY.md
  • SQL2003.snk
  • WebJobs.Extensions.Sql.sln

# Installation Guide

1. Get the code
git clone https://github.com/Azure/azure-functions-sql-extension

Downloads the entire project code from GitHub to your computer.

cd azure-functions-sql-extension

Moves into the project folder you just downloaded.

2. .NET

Medium Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • .NET SDK The SDK required for the dotnet command.
dotnet restore

Downloads the packages the project depends on.

dotnet run

Builds the project and runs it immediately.

After dotnet run, check the message or address shown in the terminal.

3. Maven (Java)

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • JDK (Java) Required to build and run Java projects.
  • Maven The build tool used for the mvn command.
cd java-library

This project's files live in a subfolder, so move into it first.

mvn clean install

Installs dependencies and builds the project using Maven.

A BUILD SUCCESS message means it worked. The output is created under target/.
// repository documentation