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
- Read-Execute-Print Loop (REPL)
- Simplest Compiler and Virtual Machine
- In-Memory, Append-Only , Single Table DB
- Insert, Print
- In Memory
- Single, Hard-Coded Table
- serialize and deserialize
column | size (bytes) | offset |
---|
id | 4 | 0 |
username | 32 | 4 |
email | 255 | 36 |
total | 291 | |
- Tests
- Persistence to Disk