© 2023 Hashnode
#crud
Apache Cassandra is a highly scalable and distributed NoSQL database that is well-suited for handling large amounts of data. One of the powerful features of Cassandra is the ability to use user-define…
An API is an application programming interface that provides an interface between applications. For example, if you take login as an example By clicking the Login button in any web application, it will communicate with the backend APIs and …
Creating, reading, updating, and deleting data in a database is a common task in many applications, and JDBC (Java Database Connectivity) is a Java API that allows you to connect to a database and perform these operations. In this blog post…
INTRO In MySql database, data is stored within tables and there are many tables as per requirement. Within a table, with any data, we can do basic four operations. Like we can insert new data into a t…
Tech used : React(with vite and not create-react app) and Vanilla CSS for Front end MongoDB with Mongoose for Database with MongoDB Atlas for managing the cluster with full ease Express Js on top o…
Postman is a popular tool used for API development and testing. It allows developers to easily test and debug their API endpoints by making various types of HTTP requests, such as GET, POST, PUT, and DELETE. The tool also allows for easy or…
In this blog, we will guide you through SQL transactions in a Flask application and help you configure transaction modes with DbVisualizer. When administering a database, DBAs are responsible for a wi…
In this tutorial, we'll be showing you how to create a powerful blog API using Node.js, JWT, and Mongoose. Our API will allow users to create, read, update, and delete blog posts, and we'll be using JWT (JSON Web Token) to secure the API an…
Introduction Welcome to our tutorial on how to build a CRUD (create, read, update, delete) blog API with NodeJS, ExpressJS, and MongoDB. In this tutorial, we will be building a RESTful API for a simpl…
A beginner-friendly tutorial on building a blog site with responsive web design, user authentication, and DB CRUB operation. Introduction Flask is a web framework, it’s a Python module that lets you d…