{"id":21239576,"url":"https://github.com/ahmedabougabal/databasemanagementsystem_iti","last_synced_at":"2026-05-18T08:34:25.943Z","repository":{"id":249351519,"uuid":"828453996","full_name":"ahmedabougabal/DatabaseManagementSystem_ITI","owner":"ahmedabougabal","description":"Implementing a DBMS (Database Engine) from scratch using Bash Shell Scripting. ","archived":false,"fork":false,"pushed_at":"2024-08-12T15:15:16.000Z","size":53,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-15T03:41:39.265Z","etag":null,"topics":["bash-scripting","database","dbms-project","kernel","linux-shell","ubuntu"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ahmedabougabal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-14T07:42:25.000Z","updated_at":"2024-08-12T15:15:19.000Z","dependencies_parsed_at":null,"dependency_job_id":"9bd30bdb-2ca7-4ab9-84cf-ae62bc52e621","html_url":"https://github.com/ahmedabougabal/DatabaseManagementSystem_ITI","commit_stats":null,"previous_names":["ahmedabougabal/databasemanagementsystem_iti"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ahmedabougabal/DatabaseManagementSystem_ITI","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahmedabougabal%2FDatabaseManagementSystem_ITI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahmedabougabal%2FDatabaseManagementSystem_ITI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahmedabougabal%2FDatabaseManagementSystem_ITI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahmedabougabal%2FDatabaseManagementSystem_ITI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ahmedabougabal","download_url":"https://codeload.github.com/ahmedabougabal/DatabaseManagementSystem_ITI/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahmedabougabal%2FDatabaseManagementSystem_ITI/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33170885,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T05:43:36.989Z","status":"ssl_error","status_checked_at":"2026-05-18T05:43:19.133Z","response_time":71,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bash-scripting","database","dbms-project","kernel","linux-shell","ubuntu"],"created_at":"2024-11-21T00:44:10.058Z","updated_at":"2026-05-18T08:34:25.908Z","avatar_url":"https://github.com/ahmedabougabal.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bash Shell Script Database Management System (DBMS)\n\n![Forks](https://img.shields.io/github/forks/ahmedabougabal/DatabaseManagementSystem_ITI?style=social)\n![Stars](https://img.shields.io/github/stars/ahmedabougabal/DatabaseManagementSystem_ITI?style=social)\n![Watchers](https://img.shields.io/github/watchers/ahmedabougabal/DatabaseManagementSystem_ITI?style=social)\n![Issues](https://img.shields.io/github/issues/ahmedabougabal/DatabaseManagementSystem_ITI)\n![Pull Requests](https://img.shields.io/github/issues-pr/ahmedabougabal/DatabaseManagementSystem_ITI)\n![License](https://img.shields.io/github/license/ahmedabougabal/DatabaseManagementSystem_ITI)\n\n## Overview\n\nWelcome to the **Bash Shell Script Database Management System (DBMS)**! This project aims to create a lightweight, file-based DBMS using Bash scripts. Users can perform various database operations through a command-line interface.\n\n## Features\n\n- 📁 **Create Database**\n- 📜 **List Databases**\n- 🔗 **Connect to Database**\n- 🗑️ **Drop Database**\n- 📋 **Create Table**\n- 📄 **List Tables**\n- 🗑️ **Drop Table**\n- ➕ **Insert into Table**\n- 🔍 **Select From Table**\n- ❌ **Delete From Table**\n- 📝 **Update Table**\n\n## Table of Contents\n\n- [Installation](#installation)\n- [Usage](#usage)\n- [Commands](#commands)\n  - [Database Commands](#database-commands)\n  - [Table Commands](#table-commands)\n- [Contributing](#contributing)\n\n## Installation\n\nClone the repository to your local machine:\n\n```sh\ngit clone https://github.com/ahmedabougabal/DatabaseManagementSystem_ITI.git\ncd DatabaseManagementSystem_ITI\n```\n\nMake the script executable:\n\n```sh\nchmod +x dbms.sh\n```\n\n## Usage\n\nRun the main script to start the DBMS:\n\n```sh\n./dbms.sh\n```\n\nFollow the prompts to interact with the DBMS.\n\n## Commands\n\n### Database Commands\n\n- **Create Database**: Create a new database directory.\n- **List Databases**: List all available databases.\n- **Connect to Database**: Connect to a specific database.\n- **Drop Database**: Delete a specific database.\n\n### Table Commands\n\nOnce connected to a database, the following commands are available:\n\n- **Create Table**: Define a new table and its columns.\n- **List Tables**: List all tables within the connected database.\n- **Drop Table**: Delete a specific table.\n- **Insert into Table**: Add a new row to a table.\n- **Select From Table**: Display rows from a table.\n- **Delete From Table**: Remove specific rows from a table.\n- **Update Table**: Modify existing rows in a table.\n\n## Contributing\n\nWe welcome contributions to enhance the DBMS. Please follow these steps:\n\n1. Fork the repository.\n2. Create a new branch for your feature or bugfix.\n3. Commit your changes with a descriptive message.\n4. Push your changes to your fork.\n5. Create a pull request to the main repository.\n\n\u003chr /\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fahmedabougabal%2Fdatabasemanagementsystem_iti","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fahmedabougabal%2Fdatabasemanagementsystem_iti","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fahmedabougabal%2Fdatabasemanagementsystem_iti/lists"}