It occurred to me that there might be some surprising uses for SQLite in the Perl realm.
How are you using it?
Re:Well....
acme on 2006-03-14T15:01:58
I'm sure you realise that CPAN Testers results is already available as an SQLite database: http://testers.cpan.org/testers.db (large!)Re:Well....
Alias on 2006-03-14T16:29:46
Yep, I know. That's one of three.
And I've created Data::Package::SQLite to start heading towards installing that dataset.
I use it for various things. Works well as a simple backend DB in Maypole, and various apps we use at work. I'm even considering using it as a configuration file format - but that's one of my more outlandish ideas...
I wrote a web app for my wife to use and it needed a DB. It also needed to run on her Windows machine. My machine runs Debian (Ubuntu actually) so I was keen to use cross-platform components everywhere. I did the development and testing on Linux then installed the Apache+Perl+mod_perl+kitchen_sink for Win32 from Randy Kobes and the SQLite PPM from his repository on the target Windows machine. Everything Just Worked™ and setting up the database on Windows was a simple as copying one file from Linux.
sqlite3 the_house.db 'VACUUM;'