I cannot seem to find the rootpage when reading page-1’s schema table.
I also tried using the existing sqlite3 cli on my machine but it prints the following when I run SELECT * FROM sqlite_master;
table|apples|apples|2|CREATE TABLE apples
(
id integer primary key autoincrement,
name text,
color text
)
table|sqlite_sequence|sqlite_sequence|3|CREATE TABLE sqlite_sequence(name,seq)
table|oranges|oranges|4|CREATE TABLE oranges
(
id integer primary key autoincrement,
name text,
description text
)
I was expecting to see the root pages being shown for each table but I cannot find them.

