Tag: Database

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 […]

Create a No-code GraphQL Server Using Hasura and PostgreSQL

Reading Time: 7 minutes To handle CRUD, authorization, and business logic, backend developers frequently need to write several lines of code. All of this code must be tested, debugged, and maintained for the duration of the project. This consumes a significant amount of time that developers could be used to create new features. This blog will demonstrate to you […]

Use SurrealDB to Persist Data with Rocket REST API

Reading Time: 8 minutes Databases are essential in web development for organizing data in various forms and shapes (both structured and unstructured). Their ultimate goal is for the stored data to be easily retrievable, updated, queried, and generally administered via a graphical user interface (GUI), dashboard, or even command line interface (CLI). We can use database management systems to […]

How to connect to MongoDB using Mongoose and MongoDB Atlas in Node.js?

Reading Time: 10 minutes MongoDB is one of the most popular No-SQL databases in the developer community today. Instead of SQL objects, No-SQL databases allow developers to send and retrieve data as JSON documents. In this blog, we will demonstrate how to connect to MongoDB using Mongoose and MongoDB Atlas in Node.js. Let’s get started! In this blog, we […]

How to Create a REST API with Rust Rocket Framework and Diesel Middleware with PostgreSQL Database?

Reading Time: 8 minutes For many years, C and C++ have been the main low-level programming languages. C and C++ require manual deallocation of memory to prevent memory leaks which are the major cause of security breaches in Software. Rust comes in to offer memory safety and at the same time speed of execution that matches that of C. […]

How to upload single or multiple images to a local directory with Multer in Node.js?

Reading Time: 7 minutes The most fundamental operation of any application is a file upload. While images can be uploaded on the front end, they must be received via an API and database on the backend. You can set up file and image uploads in one place using Multer and Express, a Node.js framework. In this blog, we will […]

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 perform an Amazon Aurora Database deployment that replicates data and spans across multiple AWS regions?

Reading Time: 9 minutes Amazon Web Services provides us with the flexibility of managing the data in the databases with ease. The flexibility is thus provided by an AWS Service called Amazon Aurora. An Amazon Aurora cluster contains one or more DB instances and a cluster volume that helps us manage the data for those DB instances. A cluster […]

How to design a Redshift cluster and query data using a query editor?

Reading Time: 4 minutes Amazon Redshift is a cloud Data warehouse solution for querying and analyzing data. In this blog, we will discuss how Redshift delivers fast query performance. Amazon Redshift provides different types of instances to maximize speed for performance-intensive workloads. It provides fast performance for datasets varying in size from gigabytes to petabytes. It is easily scalable […]

How to set up a Document Database with Amazon DocumentDB (with MongoDB compatibility) and AWS Cloud9 in a private VPC?

Reading Time: 11 minutes Are you utterly exhausted from thinking about your storage of data? You can get a fast, scalable, highly available, and fully managed document database service that supports MongoDB workloads and makes it easy to store, query, and index JSON data with Amazon DocumentDB (with MongoDB compatibility). In this blog, we will see how to get […]

Back To Top