Posts

Showing posts with the label Azure SQL Database

Build REST CRUD APIs using Azure SQL Database and ASP.NET

Image
To build REST CRUD APIs using Azure SQL Database and ASP.NET, you can follow these steps: Step 1: Create an Azure SQL Database 1. Sign In to the Azure Portal Open Azure Portal . Sign in with your Azure credentials. If you don’t have an account, create one. 2. Navigate to the "Create a Resource" Section In the Azure Portal, click on "Create a resource" . In the Search box, type "SQL Database" and select it from the search results. 3. Configure the SQL Database This step involves configuring the necessary settings for your database. Database Settings: Subscription : Select your Azure subscription. Resource Group : You can either create a new resource group or select an existing one. Resource groups help organize and manage related resources. Database Name : Choose a name for your database (e.g., MySqlDb ). Server : You need to create a new SQL Server or select an existing one. If creating a new server, click on "Create new" , and provide: Server ...

Spring JDBC API + Azure SQL Database - Build REST CRUD APIs

Image
In this section, we will learn how to build REST CRUD APIs with  Spring Boot ,  Spring JDBC API  and  Microsoft  Azure SQL Database . A little bit of Background Azure SQL Database Azure SQL Database is a fully managed platform as a service (PaaS) database engine that handles most of the database management functions such as upgrading, patching, backups, and monitoring without user involvement. Azure SQL Database is always running on the latest stable version of the SQL Server database engine and patched OS with 99.99% availability. PaaS capabilities built into Azure SQL Database enable you to focus on the domain-specific database administration and optimization activities that are critical for your business. More Info -  What is the Azure SQL Database service? - Azure SQL Database | Microsoft Learn Spring Boot Spring Boot makes it easy to create stand-alone, production-grade Spring-based Applications that you can "just run".  More Info -  Spring B...