Tag: mysql

How to Create Rest API in Spring Boot and Perform CRUD Operations with MySQL Database?

Reading Time: 8 minutes In this blog, we will cover: What are CRUD Operations? What is Spring Boot? What is MySQL Database? What is REST API Hands-On Conclusion What are CRUD Operations? CRUD represents Create, Read/Retrieve, Update, and Delete – fundamental actions on persistent storage, aligned with HTTP methods used in web development and database management: – POST: Establishes […]

How to connect to MySQL database and run CRUD operations in Node.js?

Reading Time: 8 minutes In this blog, we will have a look at getting started with the MySQL npm package which is a Node.js client for connecting to MySQL, written in JavaScript. We will see how to use the package to connect to a MySQL database and perform the CRUD operations. We will begin with creating a new directory […]

How to migrate RDS MySQL database to RDS PostgreSQL database using AWS Database Migration Service(DMS)?

Reading Time: 7 minutes Do you want to migrate data from one type of DB engine (MySQL) to another type of DB engine(PostgreSQL) with little or no downtime? In today’s fast-paced environment, application, and database availability must be considered 24 hours a day, seven days a week. Some of your applications may be unable to tolerate substantial downtime while […]

Back To Top