Convert Pro Cycling Manager CDB database files to and from SQLite, straight from the command line or your own code. Lightweight, isomorphic (Node.js and the browser), and zero-configuration.
The conversion is lossless: a full cdb → sqlite → cdb round-trip preserves every table, column, data type, and flag — so you can edit a database in any SQLite tool and load it back into the game. Optionally, it can reconstruct the database relationships as real PRIMARY KEY / FOREIGN KEY constraints, turning the export into a normalized database you can explore with JOINs and ER-diagram tools.
Note
Based on agfor/pcmdbedit — many thanks to agfor for the foundational work.
- Features
- Getting started
- Command line
- Library usage
- API reference
- Supported data types
- How metadata is preserved
- Compatibility
- Performance & size
- Samples
- CDB ↔ SQLite — convert between the binary CDB format and standard SQLite databases.
- CLI included — convert files without writing any code; direction is auto-detected.
- Lossless round-trip — table flags, column order, and data types survive an export/reopen cycle.
- Optional relational schema — reconstruct
PRIMARY KEY/FOREIGN KEYconstraints for JOINs and ER diagrams, without breaking the round-trip. - Isomorphic — runs in Node.js and in the browser via sql.js.
- Lightweight — the library's own code is ~28 kB, with only
pakoandsql.jsas dependencies. - TypeScript-first — native type definitions and full IDE support.
- Tree-shakeable — pure functions, no side effects, ESM + CommonJS builds.
npm install cdb-converterNote
Requires Node.js 22 or newer. In the browser, sql.js loads its WebAssembly runtime on demand.
The fastest way to try it is the CLI:
npx cdb-converter database.cdbThe package ships a cdb-converter command. The conversion direction is auto-detected from the input file extension.
# CDB → SQLite (default output: database.sqlite)
npx cdb-converter database.cdb
# SQLite → CDB (default output: database.cdb)
npx cdb-converter database.sqlite
# Provide an explicit output path (directories are created as needed)
npx cdb-converter database.cdb data/database.sqlite
# Reconstruct PRIMARY KEY / FOREIGN KEY constraints (CDB → SQLite only)
npx cdb-converter database.cdb database.sqlite --normalize
# Help / version
npx cdb-converter --help
npx cdb-converter --version| Input extension | Direction | Default output |
|---|---|---|
.cdb |
CDB → SQLite | <input>.sqlite |
.sqlite / .db |
SQLite → CDB | <input>.cdb |
| Option | Effect |
|---|---|
-n, --normalize |
(CDB → SQLite only) reconstruct PK/FK constraints from PCM naming conventions. See Normalized schema. |
--index-fk |
Implies --normalize; also indexes every FK column for faster JOINs (roughly doubles output size). |
--precise-types |
(CDB → SQLite only) preserve the exact CDB type (BOOLEAN, INTEGER_BYTE, INTEGER_SHORT) instead of collapsing it to plain INTEGER. See Compatibility. |
import fs from "node:fs";
import initSqlJs from "sql.js";
import { cdbToSql } from "cdb-converter";
const SQL = await initSqlJs();
// Read and convert a CDB file
const cdbBuffer = fs.readFileSync("database.cdb");
const db = cdbToSql(cdbBuffer, SQL);
// Query it like any SQLite database
const result = db.exec("SELECT * FROM Teams LIMIT 5");
console.log(result[0].values);
// Export to a .sqlite file
fs.writeFileSync("database.sqlite", db.export());Important
You must pass the initialized sql.js module returned by initSqlJs(). This library does not initialize sql.js for you: that setup is asynchronous and environment-specific (the caller decides how the wasm file is loaded in Node.js or the browser).
By default the SQLite output is a flat mirror of the CDB tables, with no relational constraints. Pass { normalize: true } to reconstruct PRIMARY KEY and FOREIGN KEY constraints from the PCM naming conventions (ID{table} identity columns and fkID{target} references), turning the export into a proper relational database — ready for JOINs, entity-relationship diagrams, and schema introspection tools.
const db = cdbToSql(cdbBuffer, SQL, { normalize: true });
// Relationships are now navigable:
db.exec(`
SELECT c.gene_sz_name, t.gene_sz_name
FROM DYN_cyclist c
JOIN DYN_team t ON c.fkIDteam = t.IDteam
`);Notes:
- Round-trip safe. Constraints are declarative metadata only;
sqlToCdbignores them, so a normalized database still converts back to a byte-identical CDB. The flag is only meaningful in the CDB → SQLite direction. - Foreign keys are not enforced.
PRAGMA foreign_keysis left OFF so orphaned references (common in real saves) never block the conversion. - Best-effort. Columns whose relationship cannot be inferred simply get no constraint. Primary keys are downgraded to a plain index when the data is not unique.
- Foreign-key indexes are opt-in. Pass
{ normalize: true, indexForeignKeys: true }to also index every FK column for faster JOINs. These indexes roughly double the output size and conversion time, sonormalizealone leaves them out — the schema is fully relational either way.
// Lean: constraints only (~+40% size)
cdbToSql(cdbBuffer, SQL, { normalize: true });
// Heavier, faster JOINs: also index FK columns (~2x size)
cdbToSql(cdbBuffer, SQL, { normalize: true, indexForeignKeys: true });import fs from "node:fs";
import initSqlJs from "sql.js";
import { sqlToCdb } from "cdb-converter";
const SQL = await initSqlJs();
// Load a SQLite database and convert back to CDB
const sqliteBuffer = fs.readFileSync("database.sqlite");
const db = new SQL.Database(sqliteBuffer);
const cdbBuffer = sqlToCdb(db); // automatically compressed
fs.writeFileSync("database.cdb", Buffer.from(cdbBuffer));The library handles CDB compression (zlib deflate) transparently, but the helpers are exposed if you need them directly:
import { compressCdb, decompressCdb } from "cdb-converter";
const compressed = compressCdb(cdbData);
const decompressed = decompressCdb(compressed); // accepts compressed or raw input<script src="https://cdn.jsdelivr.net/npm/sql.js@1.14.1/dist/sql-wasm.js"></script>
<script type="module">
import { cdbToSql } from "https://cdn.jsdelivr.net/npm/cdb-converter/+esm";
const SQL = await initSqlJs({
locateFile: (file) =>
`https://cdn.jsdelivr.net/npm/sql.js@1.14.1/dist/${file}`,
});
// Read a CDB from a file input
const file = document.getElementById("cdb-input").files[0];
const cdbBuffer = await file.arrayBuffer();
const db = cdbToSql(cdbBuffer, SQL);
console.log(db.exec("SELECT * FROM sqlite_master WHERE type='table'"));
</script>Convert CDB binary data into a SQLite database instance.
cdbBuffer—ArrayBuffer | Uint8Array, raw CDB data (compressed or uncompressed).SQL—SqlJsStatic, the module returned byinitSqlJs().options.normalize—boolean(defaultfalse). Reconstruct PK/FK constraints from PCM naming conventions. See Normalized schema.options.indexForeignKeys—boolean(defaultfalse). When normalizing, also index every FK column for faster JOINs (roughly doubles the output size).options.preciseTypes—boolean(defaultfalse). Preserve the exact CDB type (BOOLEAN, INTEGER_BYTE, INTEGER_SHORT) and each table's flags in the.sqlitefile instead of the official-tool-compatible defaults. See How metadata is preserved.- returns — a
sql.jsDatabasewith the CDB tables loaded.
Convert a SQLite database back to CDB binary format (automatically compressed).
db— asql.jsDatabaseinstance.- returns — compressed CDB binary data as an
ArrayBuffer.
Compress CDB data using zlib deflate. Accepts ArrayBuffer | Uint8Array.
Decompress CDB data, transparently handling both compressed and already-uncompressed input.
Lower-level building blocks (
CDBReader,CDBWriter), enums (ChunkType,DataType,Magic), and all TypeScript types are also exported from the package root.
Every CDB data type is preserved during conversion:
| Type | Description | Example |
|---|---|---|
INTEGER |
32-bit signed | 42 |
FLOAT |
IEEE 754 float32 | 3.14 |
STRING |
UTF-8 text | "cyclist" |
BOOLEAN |
Bit-packed | true / false |
INTEGER_BYTE |
8-bit signed | -128 to 127 |
INTEGER_SHORT |
16-bit unsigned | 0 to 65535 |
FLOAT_LIST |
Array of floats | (1.5,2.3,3.7) |
INTEGER_LIST |
Array of integers | (10,20,30) |
The library uses a special DB_STRUCTURE table to round-trip CDB metadata that has no native SQLite equivalent:
-- default (compatible with the official PCM SQLiteExporter tool)
CREATE TABLE DB_STRUCTURE (TableName '274', ID '0')
-- with { preciseTypes: true }
CREATE TABLE DB_STRUCTURE (TableName TEXT '274', ID INTEGER, Flags INTEGER)Column indices and data types are encoded into each column's declared type annotation, so cdb → sqlite → cdb preserves every row value even when the SQLite database is saved to disk and reopened in a separate process. How much of the schema survives depends on the mode: preciseTypes: true round-trips the CDB types and table flags exactly, while the default trades some of that fidelity for interop. By default, CDB's narrower integer types (BOOLEAN, INTEGER_BYTE, INTEGER_SHORT) are encoded as plain INTEGER, and each table's flags (their exact meaning is unknown but must be preserved) are not written to the .sqlite file — sqlToCdb falls back to a static table of flags extracted from official PCM saves (TABLE_FLAGS_BY_ID) instead. Pass { preciseTypes: true } (--precise-types on the CLI) to encode the exact CDB type and store each table's real flags in the Flags column instead of relying on that fallback.
This default exists specifically for interop: the official PCM SQLiteExporter tool only recognizes FLOAT, STRING and the two list types in this metadata and has no Flags column — a .sqlite written with preciseTypes: true crashes it on import. Leave preciseTypes off if you need the output to be re-importable by that tool; turn it on if cdb-converter (via sqlToCdb) is the only tool that will ever read the file back and you want the extra fidelity.
The CDB parser is format-driven, not version-specific, so it is not tied to a single Pro Cycling Manager release. Round-trip conversion (cdb → sqlite → cdb) is tested against the official databases of — losslessly, including types and flags, with preciseTypes: true, and preserving all row data in the default mode:
| Version | Status |
|---|---|
| Pro Cycling Manager 2014 | ✅ tested |
| Pro Cycling Manager 2018 | ✅ tested |
| Pro Cycling Manager 2019 | ✅ tested |
| Pro Cycling Manager 2021 | ✅ tested |
| Pro Cycling Manager 2025 | ✅ tested |
The default (non-preciseTypes) .sqlite output is also verified importable by the official PCM SQLiteExporter tool (-import) on Pro Cycling Manager 2025 saves, round-tripping back through cdb-converter with identical data. SQLiteExporter itself cannot export the 2014 fixture (it crashes on that file directly, independent of anything produced by this library), so that combination isn't claimed.
A full cdb → sqlite → cdb round-trip on a real ~60k-row database stays well under half a second, and the library's own code adds only ~28 kB — the SQLite WASM runtime is the real weight, and you would pay for it with any SQLite-in-JS approach.
Normalization is opt-in and costs only what you ask for (measured against the default conversion, ~60k rows):
| Mode | Conversion time | Output size |
|---|---|---|
| Default (flat) | baseline | baseline |
normalize |
+~10% | +~40% |
normalize + indexForeignKeys |
+~40% | +~130% |
See bench/README.md for the full per-fixture numbers, the bundle breakdown, and how to reproduce them (npm run bench).
Runnable examples live in the samples folder:
- Browser — convert a
.cdbfile to SQLite directly in the browser. - Node.js — CDB to SQLite — convert a
.cdbfile into a.sqlitefile. - Node.js — SQLite to CDB — convert a
.sqliteor.dbfile back into a.cdbfile.
MIT — see LICENSE for details.