Skip to content

Commit 59ec7f3

Browse files
committed
Link to part 3
1 parent 9d87b5f commit 59ec7f3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@ I'm building a clone of [sqlite](https://www.sqlite.org/arch.html) from scratch
1414
# Table of Contents
1515
- [Part 1 - Introduction and Setting up the REPL](part1)
1616
- [Part 2 - World's Simplest SQL Compiler and Virtual Machine](part2)
17+
- [Part 3 - An In-Memory, Append-Only, Single-Table Database](part3)
1718

1819
{% include image.html url="assets/images/arch2.gif" description="sqlite architecture (https://www.sqlite.org/arch.html)" %}

part2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ db > .exit
146146
~
147147
```
148148

149-
The skeleton of our database is taking shape... wouldn't it be nice if it stored data? In the next part we'll implement `insert` and `select`, creating the world's worst data store. In the mean time, here's the entire diff from this part:
149+
The skeleton of our database is taking shape... wouldn't it be nice if it stored data? In [Part 3](part3) we'll implement `insert` and `select`, creating the world's worst data store. In the mean time, here's the entire diff from this part:
150150

151151
```diff
152152
@@ -10,6 +10,23 @@ struct InputBuffer_t {

0 commit comments

Comments
 (0)