SQLite has an incredibly small footprint. The database itself, its DLLs and the complimentary diff and analyzer tools are less than 15 MB in size. It's perfect for small mobile devices, advanced ...
Overview Want to work with SQLite databases via the same kind of workbench tools available for MySQL/MariaDB and PostgreSQL? These three projects — a desktop application, a web-based app, and a Visual ...
Love it or hate it, the capabilities of your modern web browser continuously grow in strange and wild ways. The ability for web apps to work offline requires a persistent local storage solution and ...
In my last column, I introduced SQLite, an amazing little database engine written and provided entirely in C source code. I showed you how to begin wrapping it up in modern C++, producing a correct ...
Overview SQLite databases live on disk as a single file, so it's tempting to think you can make database backups just by copying the file. But this doesn't ensure the copy takes into account any ...
I recently published a tutorial describing the different available methods to store data locally in an Android app. However, due to article length constraints, I could not adequately cover creating ...