An important note about the next course lecture:
The import syntax you see there has changed since the video was recorded.
Instead of
import { SQLite } from 'expo-sqlite';it's now
import * as SQLite from 'expo-sqlite';
The code itself stays the way it's shown.