I have used it to deal with the SQLite databases that some programs use, as well as for data queries in general where SQL is helpful (in addition to SQLite databases, the command-line tool can also load CSV and JSON, so it is very helpful for a lot of kind of data), and also I have used in the following programs I write:<p>- bystand (NNTP client) - Saves the article and configuration database; also for user customization (including the header displays)<p>- sqlnetnews (NNTP server) - Saves the article database, including list of newsgroups, and overview data<p>- Free Hero Mesh (a puzzle game engine) - Batch operations , user customization, user cache, and storing user data such as move lists (although solutions can be exported to another file); not used for the game rules (which uses a custom programming language)<p>- frezed (ZZT external editor) - Batch operations, queries, user customization, and more; almost half of this program is written in SQL<p>- TeXnicard (a similar purpose to Magic Set Editor and similar programs) - Store the card database, make queries and batch operations, PCRE callouts (mainly because, as far as I know, the PostScript interpreter may not be reentrant), custom random pack/deck definitions (defined as views), and can call SQL codes from PostScript codes<p>In all of these programs the user can also enter their own SQL codes (Fossil, below, also supports this), except sqlnetnews (which is server software, so the user input is not considered trusted in this case).<p>I also use Fossil, which also uses SQLite.<p>I would also like to have virtual table interfaces for some remote data (some sort of standardized protocol(s) with open source implementations), especially that which changes often, or that incremental updates will be useful; then SQLite can be used for that, too. For other data, SQLite databases that you can just download and query on your own computer, would be a good things to have, too.<p>So, SQLite is very good, for many more things than I had just listed, too.
A few other things which use SQLite are listed at: <a href="http://fileformats.archiveteam.org/wiki/Category:SQLite_based_file_formats" rel="nofollow">http://fileformats.archiveteam.org/wiki/Category:SQLite_base...</a>