Skip to content

Instantly share code, notes, and snippets.

View ppenelon's full-sized avatar

Pierre Penelon ppenelon

View GitHub Profile
@isDipesh
isDipesh / sqlite-to-cloudflare-d1-import.md
Created December 22, 2025 06:25
Importing SQLite to Cloudflare D1

Importing SQLite to Cloudflare D1

Dump SQLite to Sql

sqlite3 -escape off server/db/db.sqlite .dump > db.sql

Escape off prevents unistr in newer versions of sqlite, which D1 does not support.

Cleanup SQL Dump

  • Remove BEGIN TRANSACTION; and COMMIT; from the file