{"id":20563332,"url":"https://github.com/siddhant-vij/simpledb-engine","last_synced_at":"2026-04-15T07:35:15.254Z","repository":{"id":225308811,"uuid":"757920968","full_name":"siddhant-vij/SimpleDB-Engine","owner":"siddhant-vij","description":"A lightweight database engine supporting CRUD, simple queries, and concurrency control with a CLI.","archived":false,"fork":false,"pushed_at":"2024-03-02T15:55:17.000Z","size":6647,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-09T08:38:54.378Z","etag":null,"topics":["cli-app","concurrency","crud","database-engine","java","json","query-processing"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/siddhant-vij.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-02-15T09:05:59.000Z","updated_at":"2024-03-02T17:51:30.000Z","dependencies_parsed_at":"2025-10-09T08:38:43.150Z","dependency_job_id":"732568e8-2340-443e-86c7-0c54c7676d32","html_url":"https://github.com/siddhant-vij/SimpleDB-Engine","commit_stats":null,"previous_names":["siddhant-vij/simpledb-engine"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/siddhant-vij/SimpleDB-Engine","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddhant-vij%2FSimpleDB-Engine","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddhant-vij%2FSimpleDB-Engine/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddhant-vij%2FSimpleDB-Engine/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddhant-vij%2FSimpleDB-Engine/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/siddhant-vij","download_url":"https://codeload.github.com/siddhant-vij/SimpleDB-Engine/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddhant-vij%2FSimpleDB-Engine/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31831845,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T07:17:56.427Z","status":"ssl_error","status_checked_at":"2026-04-15T07:17:30.007Z","response_time":63,"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":["cli-app","concurrency","crud","database-engine","java","json","query-processing"],"created_at":"2024-11-16T04:17:41.114Z","updated_at":"2026-04-15T07:35:15.223Z","avatar_url":"https://github.com/siddhant-vij.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SimpleDB Engine\n\nSimpleDB Engine is a lightweight, file-based database engine designed to support basic CRUD operations, simple query processing, and concurrency control.\n\u003cbr\u003e\n\u003cbr\u003e\nInspired by the need for a straightforward and easy-to-use database system, SimpleDB Engine offers a robust solution for small-scale applications that require minimal setup and maintenance.\n\n\u003cbr\u003e\n\n## Table of Contents\n\n1. [Features](#features)\n1. [Installation \u0026 Usage](#installation-and-usage)\n1. [Contributing](#contributing)\n1. [Future Improvements](#future-improvements)\n1. [License](#license)\n\n\u003cbr\u003e\n\n## Features\n\n- **Lightweight and File-based**: Utilizes JSON for easy data manipulation and human readability.\n- **CRUD Operations**: Supports Create, Read, Update, and Delete operations.\n- **Simple Query Processing**: Uses RegEx for parsing simple query syntax.\n- **Concurrency Control**: Implements basic locking mechanisms for safe concurrent read/write operations.\n- **CLI Interface**: Provides a Command Line Interface for database management and query execution.\n\n\u003cbr\u003e\n\n## Installation and Usage\n1. **Clone the Repository**:\n    ```bash\n    git clone https://github.com/siddhant-vij/SimpleDB-Engine.git\n    ```\n2. **Compile the Source Code**: Navigate to the project directory and compile the Java files in the `src` folder. Following command works in Windows Bash.\n    ```bash\n    cd SimpleDB-Engine\n    javac -d bin -classpath 'lib/*' $(find src/com/simpledb -name '*.java')\n    ```\n3. **Run the Application**: Start the application using the Java command. Following command works in Windows Bash.\n    ```bash\n    java -cp \"bin;lib/*\" com.simpledb.Main\n    ```\n4. **Using the CLI**: Follow the on-screen prompts to perform database operations.\n\n\u003cbr\u003e\n\n## Contributing\n\nContributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.\n\n1. **Fork the Project**\n2. **Create your Feature Branch**: \n    ```bash\n    git checkout -b feature/AmazingFeature\n    ```\n3. **Commit your Changes**: \n    ```bash\n    git commit -m 'Add some AmazingFeature'\n    ```\n4. **Push to the Branch**: \n    ```bash\n    git push origin feature/AmazingFeature\n    ```\n5. **Open a Pull Request**\n\n\u003cbr\u003e\n\n## Future Improvements\n\n- **Enhanced Query Processing**: Introduce more complex querying capabilities for advanced SQL queries.\n- **Improved Transaction Management**: Implement transaction management with the ability to Commit/Rollback changes to a consistent state with a complete focus on ACID properties.\n- **Performance Optimization**: Optimize data storage and retrieval processes for faster access times.\n- **Security and Authentication**: Add security and user authentication mechanisms for improved database access.\n- **GUI Interface**: Develop a graphical user interface for easier database management.\n\n\u003cbr\u003e\n\n## License\n\nDistributed under the MIT License. See [`LICENSE`](https://github.com/siddhant-vij/SimpleDB-Engine/blob/main/LICENSE) for more information.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiddhant-vij%2Fsimpledb-engine","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsiddhant-vij%2Fsimpledb-engine","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiddhant-vij%2Fsimpledb-engine/lists"}