Java DataBase Connectivity (JDBC)

JDBC (Java DataBase Connectivity) defines interfaces and classes for database connections. The java.sql package contains classes and interfaces of the JDBC interface. But why do we need DataBase connectivity in our applications? Suppose you need to create an application to manage the billing of a shop. Your application runs fine throughout the day, but at … Read more

Transactions in DBMS

In the previous blog, we learned about the basics of database. Today let’s explore this a bit more into the topic. So our topic of discussion today will be transactions. So…what are transactions?? Simply put, a transaction is a logical unit of processing in the Database Management System.In order to successfully execute, a transaction must … Read more

Database Basics

In the journey of being a full-stack developer, it is crucial to understand at least the basics of database management. So… what’s a database again?? Simply put, it is a place where you store all related information from many sources in an organized structure. OK…then what is Database Management System(DBMS)?? It is simply a software … Read more