Free online converter for converting files to DB.
We ensure quality, convenience, and support for all formats.
| Data type | Database |
| MIME type | application/vnd.sqlite3 |
| Developer | SQLite project (SQLite Consortium) |
| Primary use cases | Embedded app databases, local storage for mobile/desktop apps, caches, small-to-medium datasets, prototyping, data exchange in a single file |
DB (SQLite) is a single-file relational database that stores tables, indexes, and data in the SQLite “format 3” binary file structure.
The DB file format offers several advantages that make it suitable for common use cases.
The DB file format has certain limitations that may affect its use in specific scenarios.
DB database files are supported by many database systems and tools across different platforms.
Treat .db files as untrusted input: malformed databases can trigger parser bugs in tools. Also watch for sensitive data at rest—use OS-level encryption or an encrypted SQLite build when needed.
SQLite source and documentation are dedicated to the public domain; the file format is publicly documented