Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 655 Bytes

File metadata and controls

31 lines (21 loc) · 655 Bytes

Educational project to understand SQLite internal file format. The challenge was designed by codecrafters.io

Usage

The following commands are supported:

./sqlite3.sh sample.db .dbinfo
./sqlite3.sh sample.db .tables
./sqlite3.sh sample.db 'select count(*) from apples'
./sqlite3.sh sample.db 'select name, color from apples where color="Red"'

Setup local development

npm install

Test

Test datasets

Run test

bun test