Changes between Version 3 and Version 4 of About


Ignore:
Timestamp:
06/25/26 09:53:58 (2 weeks ago)
Author:
223091
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • About

    v3 v4  
    22
    33'''Team members:'''
    4  * Nikola Sarafimov 223091
     4
     5* Nikola Sarafimov 223091
    56
    67'''Short description:'''
    78
    8 The Room Reservation System is a database-oriented project whose main goal is to design and implement a structured relational database for managing room reservations in an organization or institution. The database will store information about rooms, users, reservations, time intervals, and user roles. It will support core operations such as searching for available rooms, creating reservations, updating reservation data, and preventing overlapping bookings.
     9The Room Reservation System is a database-oriented project whose main goal is to design and implement a structured relational database for managing reservations of shared rooms and related equipment in an organization or institution. The database will store information about buildings, rooms, equipment, users, reservations, time intervals, user roles, requested equipment, and approval decisions.
    910
    10 If the project were to be further developed, it would represent a complete room reservation management system that could be used by educational institutions, companies, or organizations that need to efficiently manage shared spaces such as classrooms, meeting rooms, or offices. The emphasis of the project is on correct database design, integrity constraints, consistency of data, and SQL-based data manipulation, rather than on complex user interface development. The system is designed to clearly separate responsibilities between different user roles and ensure reliable reservation management. It can also maintain a clear history of reservation activity and support easier future analysis of room usage.
     11The system will support core operations such as searching for available rooms, creating reservation requests, requesting additional equipment, reviewing pending reservations, and approving or rejecting reservation requests. A reservation may include a room, requested equipment, or both, which allows the model to support room-only reservations, equipment-only reservations, and combined room-and-equipment reservations.
    1112
     13If the project were to be further developed, it could represent a complete reservation management system used by educational institutions, companies, or organizations that need to efficiently manage shared spaces such as classrooms, meeting rooms, offices, and laboratories, as well as equipment used in those spaces. The emphasis of the project is on correct database design, proper ER-to-relational transformation, integrity constraints, consistency of data, and SQL-based data manipulation, rather than on complex user interface development.
     14
     15The system is designed to clearly separate responsibilities between different user roles. Regular users can search for available rooms and create reservation requests. Approvers can review pending reservations and record approval decisions. Administrators can maintain room and equipment information and oversee the reservation process. The database can also maintain a clear history of reservation activity and support easier future analysis of room and equipment usage.
    1216
    1317'''Detailed description of the project:'''
    1418
    15 The Room Reservation System is intended to be owned and operated by an organization or institution, such as a university, company, or administrative body, that provides room reservation services to its employees, staff, or members. The organization is responsible for maintaining the database and offering the reservation functionality as an internal service.
     19The Room Reservation System is intended to be owned and operated by an organization or institution, such as a university, company, or administrative body, that provides reservation services to its employees, staff, students, or members. The organization is responsible for maintaining the database and offering the reservation functionality as an internal service.
    1620
    17 The main problem addressed by this project is the inefficient and error-prone management of room reservations when handled manually or through unstructured tools. Such approaches often lead to scheduling conflicts, double bookings, and lack of transparency regarding room availability and reservation history. By introducing a centralized relational database, these issues are minimized through enforced constraints and structured data management.
     21The main problem addressed by this project is the inefficient and error-prone management of room and equipment reservations when handled manually or through unstructured tools. Such approaches often lead to scheduling conflicts, double bookings, unclear room availability, missing equipment information, and lack of transparency regarding reservation history. By introducing a centralized relational database, these issues are minimized through structured data management, integrity constraints, and controlled reservation approval.
    1822
    19 The system supports different types of users. Regular users can search for available rooms and create reservations for specific dates and time intervals. Administrators have extended privileges, including managing room information, overseeing reservations, and modifying or canceling existing reservations when necessary.
     23The database stores information about buildings, rooms, and equipment. Rooms are described by identifiers, room codes, capacities, and types. Equipment is described by equipment identifiers, names, and available stock quantities. Equipment can also be assigned to specific rooms in specific quantities, allowing the system to represent both room-specific equipment and general equipment stock.
    2024
    21 Although similar room reservation systems already exist, this project focuses specifically on demonstrating a clean and well-structured database design that follows academic principles of database normalization, integrity constraints, and transactional consistency. The solution is tailored for educational purposes and emphasizes correctness and clarity over feature complexity.
     25The system supports different types of users. Regular users can search for available rooms and create reservation requests for specific dates and time intervals. A reservation request may optionally include a room and may also request one or more equipment items. Approvers are responsible for reviewing pending reservations and recording whether a reservation is approved or rejected. Administrators have extended responsibilities related to maintaining room and equipment data and overseeing the reservation process.
    2226
    23 The system is designed as a database-oriented application and can serve as the backend for a web-based or desktop application. The primary focus, however, remains on the database layer and its proper design and implementation.
     27The project also models approval decisions as part of the reservation workflow. A reservation can initially be pending and may later receive an approval decision. Each approval decision records the decision, decision time, optional note, and the user who made the decision. This allows the system to keep a clear and structured record of how reservation requests are processed.
     28
     29Although similar reservation systems already exist, this project focuses specifically on demonstrating a clean and well-structured database design that follows academic principles of ER modeling, ER-to-relational transformation, normalization, integrity constraints, and transactional consistency. The solution is tailored for educational purposes and emphasizes correctness and clarity over feature complexity.
     30
     31The system is designed as a database-oriented application and can serve as the backend for a web-based, desktop, or console application. The primary focus, however, remains on the database layer and its proper design and implementation.