Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Neon32eeee edited this page Feb 22, 2026 · 6 revisions

DDB

DDB was created as a minimal set of tools for managing a database, and this minimalism is expressed in the fact that there are no ready-made find methods or similar conveniences — only basic CRUD operations. Everything else you are free to implement with any algorithms you want.

The structure of DDB is partly borrowed from the relational model, but at the same time it provides just three main entities to work with:

  • DB — the top-level object that manages everything else and serves as a general-purpose toolkit.
  • Table — stores elements and provides convenient operations on those elements.
  • Element — the actual unit of data storage.

Supported field types

  • i32
  • []const u8
  • bool
  • f64

Page

  1. Core Concepts
  2. DB-stuctur
  3. Table-structur
  4. Element

Clone this wiki locally