Laboratory Management System 🛢️

The Digital Phone Directory is a desktop-based application built using Java and MySQL that allows users to store, manage, and search for phone numbers and contact information. The application includes several features that enhance the user experience, including the ability to add, edit, and delete contact information, search for contacts using keywords, and sort contacts by name or phone number.

Key Features 🌟

Project Preview 👁️

screenhot

Screenshot

Screenshot

Project Setup ⚙️

  1. Download and Extract: After downloading and extracting, open this project in your IDE.
  2. Add MySQL Connector: Right-click on Library, then click Add JAR/Folder. Locate your MySQL connector JAR file (included with this repository).

Database Setup 🗄️

  1. Create Database: In your SQL terminal, create a database named phonedirectory using the following query:
    create database phonedirectory;
    use phonedirectory;

Screenshot

Import SQL File: Import the included SQL file by using the following query:

source {path of the file}/phone.sql;
GitHub Repository