IC DBMS Canister

This project is in a very early stage of development. The goal is to provide a framework for building database canisters on the Internet Computer.
Overview
IC DBMS Canister is an Internet Computer framework which provides an easy way to implement a database canister by just providing the database schema.
The user can just define the data entity by defining the tables
This will provide for the user the following API:
todo...
You can also define relationships between tables:
And once you have defined all your tables, you can instantiate the database canister:
ic_odbc_canister!;
And you will have a fully functional database canister with all the CRUD operations implemented for you.
The canister API will be automatically generated based on the defined tables, with the following methods:
todo...
License
This project is licensed under the MIT License. See the LICENSE file for details.