From a83e32a846f961169fb29d6287b68ea618068dd9 Mon Sep 17 00:00:00 2001 From: rajxd Date: Mon, 12 Feb 2024 23:46:16 +0530 Subject: [PATCH] added read me --- read.me | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 read.me diff --git a/read.me b/read.me new file mode 100644 index 0000000..14a50db --- /dev/null +++ b/read.me @@ -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 \ No newline at end of file