Hi Parag, On Tue, 4 Oct 2011 16:10:06 -0700 Parag Kalra <paragka...@gmail.com> wrote:
> On Tue, Oct 4, 2011 at 3:38 PM, Brandon McCaig <bamcc...@gmail.com> wrote: > > > On Tue, Oct 4, 2011 at 5:41 PM, Shawn H Corey <shawnhco...@gmail.com> > > wrote: > > > If the database is small, I would consider using SQLite. It stores the > > > entire database in a single file which makes it easy to backup and > > transfer. > > > Thunderbird and Firefox use it extensively. > > > > I second SQLite. :) It's basically perfect for a lightweight database. > > > > PK> Thank you all for pointing to SQLite. Other question I have is SQLite > and DBI part of standard Perl package or do I need to explicitly install the > modules. DBI and DBD::SQLite are not part of the core perl5 source distribution, but on the other hand: 1. Nothing prevents people from creating Perl distributions with them included. 2. Even the core Perl distribution is sometimes split into several components by downstream distributors (like Linux distributions, etc.). 3. You can easily install them from CPAN or using different means: http://perl-begin.org/topics/cpan/ . 4. I should note that DBD-SQLite includes the sources of the SQLite C library, for cases it's not available on the system, so you don't even need to install the latter. > > > > Though I question the types of information you have and what you > > do with it. If it's just like configuration and documentation to > > remind yourself of commands and APIs and such then I might > > suggest you instead just use shell scripts/config files and man > > pages or PODs and version it all with Git (possibly in different > > repos). :) You can create a public repository on one of the DVCS > > Web sites and make it available where ever you go. :) That way > > all of your stuff is only a clone away. > > > > For example, I try to keep all of my non-sensitive dotfiles in my > > 'rc' repository: https://github.com/bamccaig/rc/ > > > PK>> Yes I also keep my personal projects on Github, most likely would keep > this one as well. You may wish to look at http://ikiwiki.info/ or similar for that. ----------- Finally, I should note that you shouldn't prefix your replies with "PK>" or "PK>>" because that way it seems like you're quoting someone else. Instead, write your replies directly at the start of line Regards, Shlomi Fish -- ----------------------------------------------------------------- Shlomi Fish http://www.shlomifish.org/ UNIX Fortune Cookies - http://www.shlomifish.org/humour/fortunes/ If his programming is anything like his philosophising, he would find ten imaginary bugs in the “Hello World” program. Please reply to list if it's a mailing list post - http://shlom.in/reply . -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/