{"id":14572992,"url":"https://github.com/ariasql/ariasql","last_synced_at":"2025-04-03T03:11:46.802Z","repository":{"id":255601834,"uuid":"757281035","full_name":"ariasql/ariasql","owner":"ariasql","description":"The AriaSQL relational database management system.","archived":false,"fork":false,"pushed_at":"2024-09-19T02:20:20.000Z","size":10571,"stargazers_count":208,"open_issues_count":0,"forks_count":8,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-03-21T16:11:10.627Z","etag":null,"topics":["btree","database","dbms","disk","golang","json","lexer","open-source","parser","rdbms","relational-database","server","sql","sqlserver"],"latest_commit_sha":null,"homepage":"http://ariasql.com","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ariasql.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}},"created_at":"2024-02-14T06:59:05.000Z","updated_at":"2025-03-19T23:14:21.000Z","dependencies_parsed_at":"2024-09-28T14:21:00.246Z","dependency_job_id":"b1f170d8-bc9f-498c-a9d9-d437ee81965f","html_url":"https://github.com/ariasql/ariasql","commit_stats":null,"previous_names":["ariasql/ariasql"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ariasql%2Fariasql","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ariasql%2Fariasql/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ariasql%2Fariasql/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ariasql%2Fariasql/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ariasql","download_url":"https://codeload.github.com/ariasql/ariasql/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246927839,"owners_count":20856198,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["btree","database","dbms","disk","golang","json","lexer","open-source","parser","rdbms","relational-database","server","sql","sqlserver"],"created_at":"2024-09-07T09:01:22.448Z","updated_at":"2025-04-03T03:11:46.779Z","avatar_url":"https://github.com/ariasql.png","language":"Go","funding_links":[],"categories":["Go","\u003ca name=\"Go\"\u003e\u003c/a\u003eGo"],"sub_categories":[],"readme":"\u003cdiv\u003e\n    \u003ch1 align=\"center\"\u003e\u003cimg width=\"228\" src=\"artwork/ariasql-logov1.png\"\u003e\u003c/h1\u003e\n\u003c/div\u003e\n\nAriaSQL is a relational database management system designed and engineered from the ground up from scratch to address a variety of data management needs with ease and efficiency.  At its core, AriaSQL is a database server that supports a range of SQL functionalities with a focus on delivering predictability, efficient query execution and data integrity.\n\n\u003e [!WARNING]\n\u003e Still in beta stages, use at your own risk.\n\u003e An official release will be made once the project is stable.\n\u003e The repository is under active development and may change frequently.\n\u003e Things can break, change, or disappear at any time.\n\n## Features\n- [x] SQL1+ handwritten parser, lexer implementation (**AriaSQL follows and implements majority of ANSI SQL1 standard with some minor upgrades**)\n- [x] BTrees for indexes\n- [x] Executer for query execution\n- [x] SQL Server (TCP Server on port `3695`)\n- [x] User authentication and privileges\n- [x] Atomic transactions with rollback support on error\n- [x] WAL (Write Ahead Logging)\n- [x] Recovery-Replay from WAL\n- [x] Subqueries\n- [x] Aggregates\n- [x] Implicit joins\n- [x] Row level locking\n- [x] Users and privileges\n- [x] CLI (asql)\n- [x] TLS Support\n- [x] JSON response format (false by default)\n- [x] Foreign keys\n- [x] DML, DQL, DDL, DCL, TCL Support\n- [x] Stored Procedures\n- [x] Cursors\n- [x] Execution Plan using EXPLAIN\n- [x] CASE expressions (Within select list and where clauses)\n- [x] Functions (UPPER, LOWER, CAST, COALESCE, REVERSE, ROUND, POSITION, LENGTH, REPLACE, CONCAT, SUBSTRING, TRIM) `functions used with SELECT within a where clause or select list, i.e SELECT * FROM table WHERE UPPER(column) = 'TEST'`\n- [x] DATE, TIME, TIMESTAMP, DATETIME, UUID, BINARY, BOOL/BOOLEAN, TEXT, BLOB data types\n- [x] DEFAULT constraint\n- [x] CHECK constraint\n- [x] GENERATE_UUID, SYS_DATE, SYS_TIME, SYS_TIMESTAMP `functions which can be used with CREATE TABLE, or INSERT INTO, UPDATE, SELECT`\n- [x] Logging to file (aria.log) [optional]\n- [x] Encryption (ChaCha20) - Encrypts row data for storage with table level encryption [optional]\n- [x] Compression (ZSTD) - Compresses row data for storage [optional]\n- [x] Alter table (migration)\n- [ ] Replication - Replication to slave nodes, replicates wal entries from master to slave nodes.\n\n\n## Clients/Drivers\n- GO - [github.com/ariasql/ariasql-go](https://github.com/ariasql/ariasql-go) `IN DEVELOPMENT`\n- Python - [github.com/ariasql/ariasql-py](https://github.com/ariasql/ariasql-py)  `IN DEVELOPMENT`\n- NodeJS - [github.com/ariasql/ariasql-node](https://github.com/ariasql/ariasql-node)  `IN DEVELOPMENT`\n- Java - [github.com/ariasql/ariasql-java](https://github.com/ariasql/ariasql-java)  `IN DEVELOPMENT`\n- Ruby - [github.com/ariasql/ariasql-ruby](https://github.com/ariasql/ariasql-ruby)  `IN DEVELOPMENT`\n- PHP - [github.com/ariasql/ariasql-php](https://github.com/ariasql/ariasql-php)  `IN DEVELOPMENT`\n- Rust - [github.com/ariasql/ariasql-rust](https://github.com/ariasql/ariasql-rust)  `IN DEVELOPMENT`\n- C - [github.com/ariasql/ariasql-c](https://github.com/ariasql/ariasql-c)  `IN DEVELOPMENT`\n- C# - [github.com/ariasql/ariasql-csharp](https://github.com/ariasql/ariasql-csharp)  `IN DEVELOPMENT`\n- Objective-C - [github.com/ariasql/ariasql-objc](https://github.com/ariasql/ariasql-objc)  `IN DEVELOPMENT`\n- C++ - [github.com/ariasql/ariasql-cpp](https://github.com/ariasql/ariasql-cpp)  `IN DEVELOPMENT`\n- Swift - [github.com/ariasql/ariasql-swift](https://github.com/ariasql/ariasql-swift)  `IN DEVELOPMENT`\n- Kotlin - [github.com/ariasql/ariasql-kotlin](https://github.com/ariasql/ariasql-kotlin)  `IN DEVELOPMENT`\n- Scala - [github.com/ariasql/ariasql-scala](https://github.com/ariasql/ariasql-scala)  `IN DEVELOPMENT`\n- Perl - [github.com/ariasql/ariasql-perl](https://github.com/ariasql/ariasql-perl)  `IN DEVELOPMENT`\n- Lua - [github.com/ariasql/ariasql-lua](https://github.com/ariasql/ariasql-lua)  `IN DEVELOPMENT`\n- R - [github.com/ariasql/ariasql-r](https://github.com/ariasql/ariasql-r)  `IN DEVELOPMENT`\n- Julia - [github.com/ariasql/ariasql-julia](https://github.com/ariasql/ariasql-julia)  `IN DEVELOPMENT`\n- Dart - [github.com/ariasql/ariasql-dart](https://github.com/ariasql/ariasql-dart)  `IN DEVELOPMENT`\n\n\n## GUI\n- AriaSQL Developer - [github.com/ariasql/developer]() `IN DEVELOPMENT`\n\n## Documentation\nRefer to docs folder for more information on how to use AriaSQL.\n\n## Issues \u0026 Requests\n\nPlease report any issues or feature requests as an issue on this repository.\n\n## License\nAriaSQL is licensed under the AGPL-3.0 license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fariasql%2Fariasql","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fariasql%2Fariasql","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fariasql%2Fariasql/lists"}