This is a Student Management System written in Java with MySQL database connectivity.
This project implements a Student Management System that allows users to perform basic CRUD (Create, Read, Update, Delete) operations on student records. The system is integrated with a MySQL database to store and retrieve student information.
- Add Student: Add a new student to the database with details such as roll number, name, college name, city, percentage.
- Show All Students: Display details of all students currently stored in the database.
- Get Student Based on Roll Number: Retrieve information for a specific student by entering their roll number.
- Delete Student: Delete a student record from the database based on their roll number.
- Update Student: Update information for an existing student, including name and college name.
- Exit: Terminate the application.
- Encapsulation
- Abstraction
- Database Connectivity with JDBC
- CRUD Operations with MySQL