{"id":18688747,"url":"https://github.com/miniconnect/minibase","last_synced_at":"2026-05-18T09:35:21.174Z","repository":{"id":183303725,"uuid":"577033230","full_name":"miniconnect/minibase","owner":"miniconnect","description":"RDBMS framework for miniConnect","archived":false,"fork":false,"pushed_at":"2026-05-11T19:37:42.000Z","size":1046,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-11T20:32:46.381Z","etag":null,"topics":["database","database-driver","database-framework","java","rdbms","relational-database","sql","sql-parser"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/miniconnect.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2022-12-11T19:10:21.000Z","updated_at":"2026-05-11T19:37:57.000Z","dependencies_parsed_at":"2023-07-23T21:39:56.082Z","dependency_job_id":"88cd85c7-d5e2-4002-a62a-0a149c7b04df","html_url":"https://github.com/miniconnect/minibase","commit_stats":null,"previous_names":["miniconnect/minibase"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/miniconnect/minibase","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miniconnect%2Fminibase","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miniconnect%2Fminibase/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miniconnect%2Fminibase/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miniconnect%2Fminibase/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/miniconnect","download_url":"https://codeload.github.com/miniconnect/minibase/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miniconnect%2Fminibase/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33172673,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T09:27:30.708Z","status":"ssl_error","status_checked_at":"2026-05-18T09:27:28.300Z","response_time":71,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["database","database-driver","database-framework","java","rdbms","relational-database","sql","sql-parser"],"created_at":"2024-11-07T10:38:07.081Z","updated_at":"2026-05-18T09:35:21.158Z","avatar_url":"https://github.com/miniconnect.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MiniBase\n\nRDBMS framework for miniConnect.\n\n## Overview\n\nMiniBase is a flexible java framework for building relational database engines.\nIt has built-in support for SQL parsing, query execution, storages, indexing, and more.\nIt manages concurrency, currently a very basic transaction management is implemented.\n\nOne of its implementations is [HoloDB, a database seemingly filled with random data](https://github.com/miniconnect/holodb).\n\n## SQL support\n\n[Click here for the SQL documentation](SQL.md)\n\nMiniBase has built-in support for SQL queries. Features:\n\n- Limited support for the CRUD operations\n- Multiple schemas, multi-schema queries\n- User variables\n- Simple expressions\n\n`SELECT` example, demonstrating most of the supported features:\n\n```sql\nSELECT\n  t3.*,\n  t1.label,\n  t1.created t_created,\n  CONCAT(@somevar, ': ', t4.col1) AS `concatenated value`\nFROM base_table t1\nINNER JOIN inner_joined_table t2 ON t2.id = t1.i_id\nLEFT JOIN left_joined_table t3 ON t3.id = t1.l_id\nLEFT JOIN other_left_joined_table t4 ON t4.id = t3.l2_id\nWHERE\n  t1.category = 'basic' AND\n  t1.id \u003e= 150 AND\n  t1.id \u003c 960 AND\n  t4.year BETWEEN 1995 AND 2003 AND\n  t4.phone IS NOT NULL\nORDER BY\n  t1.level,\n  1 DESC,\n  t3.price ASC NULLS LAST\nLIMIT 10\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fminiconnect%2Fminibase","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fminiconnect%2Fminibase","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fminiconnect%2Fminibase/lists"}