flowchart TD
  %% Section Titles
  subgraph Core
    Interface --> SQLCommandProcessor
    SQLCommandProcessor --> VirtualMachine
  end

  subgraph SQLCompiler
    Tokenizer --> Parser
    Parser --> CodeGenerator
    SQLCommandProcessor --> Tokenizer
    SQLCommandProcessor --> CodeGenerator
  end

  subgraph Backend
    VirtualMachine --> BTree
    BTree --> Pager
    Pager --> OSInterface
  end
  1. Read-Execute-Print Loop (REPL)
  2. Simplest Compiler and Virtual Machine
  3. In-Memory, Append-Only , Single Table DB
    1. Insert, Print
    2. In Memory
    3. Single, Hard-Coded Table
    4. serialize and deserialize
columnsize (bytes)offset
id40
username324
email25536
total291
  1. Tests
  2. Persistence to Disk