Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 594 Bytes

README.md

File metadata and controls

16 lines (14 loc) · 594 Bytes

Database Engine

An implementation of a database engine with support for B+ trees and R trees indexing.

Supported Functionalities

  • creating tables.
  • inserting tuples.
  • deleting tuples.
  • searching in tables linearly.
  • creating a B+ tree index.
  • searching using B+ tree index.
  • creating an R tree index.
  • searching using an R tree index.
  • simple select queries.

Note

This is a university (GUC) course project. Course name is (CSEN 604 : Databases II). For a detailed description of the project and its requirements, please have a look at the description folder.