Built by ALL FOR ONE TECH

Embeddable DB.
Pure Performance.

Hybrid SQL+NoSQL document database. Like SQLite, but native to JSON. Password encryption, RAM engine, 6 storage engines. No server. No config. Just a file.

Get Started Download Binaries
Rust npm PyPI Maven

Zero Config

Open a file, start querying. No servers, no background processes, no config files.

🗄️

6 Storage Engines

Disk B+Tree, RAM HashMap, Vector HNSW, Time-Series, Graph, Streaming. Right engine for every use case.

🔒

ACID Transactions

Full MVCC with 4 isolation levels. Callback pattern with auto-commit/rollback and retry.

🔐

Password Encryption

AES-256-GCM with Argon2id key derivation. One line to encrypt your database.

🚀

RAM Engine

Sub-microsecond reads with O(1) HashMap. Snapshot to disk, restore on startup.

🔭

Watchdog Monitoring

Check file integrity before opening. Detect corruption in under 100ms.

📄

SQL on JSON

SELECT, WHERE, ORDER BY, LIMIT, COUNT, AVG, SUM on schemaless JSON documents.

🌍

6 Languages

Python, Node.js, Java, Go, Rust, C/C++. Identical behavior across all SDKs.

🛡️

Security Hardened

Auto chmod 600, SQL injection prevention, encrypted backups, WAL cleanup.

Hello World
3 lines of code. Tables auto-created. No setup required.
Python
Node.js
Java
Go
Rust
What's New in v1.4
100% backward compatible. All v1.3 code still works unchanged.
🔐

Password Databases

OverDrive.open("app.odb", password="secret")

🚀

RAM Engine

OverDrive.open("cache.odb", engine="RAM")

🔭

Watchdog

OverDrive.watchdog("app.odb")

🔄

Transaction Callbacks

db.transaction(lambda txn: db.insert(...))

🛠️

Helper Methods

findOne, findAll, updateMany, deleteMany, countWhere, exists

🏗️

Auto-Table Creation

Tables created on first insert automatically

Install
One command per language. Native binaries included in packages.
Python
pip install overdrive-db
Node.js
npm install overdrive-db
Go
go get github.com/ALL-FOR-ONE-TECH/OverDrive-DB_IncodeSDK/go@v1.4.0
Rust (Cargo.toml)
overdrive-db = "1.4.0"
Java (Maven)
<artifactId>overdrive-db</artifactId> <version>1.4.0</version>
C / C++
# Download overdrive.h + native binary from GitHub Releases