-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# RRDB | ||
|
||
A simple relational database implementation in Rust, created as a learning project. | ||
|
||
## Table of Contents | ||
|
||
- [About](#about) | ||
- [Features](#features) | ||
- [Getting Started](#getting-started) | ||
- [Usage](#usage) | ||
|
||
|
||
## About | ||
|
||
This project is an implementation of a basic relational database system in Rust. It was created as part of the learning process for both Rust programming language and database concepts. The goal is to build a simple yet functional database that supports basic operations such as creating tables, inserting data, and displaying tables. | ||
|
||
## Features | ||
|
||
- **Create Tables:** Define the structure of your database by creating tables with specified columns and data types. | ||
|
||
- **Insert Data:** Populate your tables with data by inserting rows. | ||
|
||
- **Show Tables:** View the contents of your tables. | ||
|
||
|
||
## Getting Started | ||
|
||
### Prerequisites | ||
|
||
- Rust | ||
|
||
### Installation | ||
|
||
```bash | ||
git clone https://github.com/rajxd/rrdb.git | ||
cd rrdb | ||
cargo run |