A simple relational database implementation in Rust, created as a learning project.
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.
-
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.
- Rust
git clone https://github.com/rajxd/rrdb.git
cd rrdb
cargo run