CDB
- -
Waiting for a .cdb file
0 tables
0 rows
0 B SQLite
No tables detected
Convert a file, then pick a table to inspect its first rows.
import { cdbToSql } from "cdb-converter"

// Browser or Node with sql.js initialized
const db = cdbToSql(cdbBuffer, SQL)
const rows = db.exec("SELECT * FROM DYN_Cyclist LIMIT 5")
const sqliteBytes = db.export()