A SQLite database file, a self-contained embedded SQL database.
| 0x00000000 | 53514C69746520666F726D6174203300 | SQLite format 3· | 'SQLite format 3\0' header |
SQLite packs an entire relational database into one file with no server, which is why it powers browsers, phones and countless apps. The header is the ASCII string 'SQLite format 3' followed by a NUL byte.
Have a file that might be SQLite database? Identify it with the File Type Identifier — it reads the magic number locally, nothing is uploaded. Or browse all formats.