Set up or update database tables
Version: 0.197CPAN::SQLite::Index is a Perl module to setup or update database tables.
License: Perl Artistic License
Operating System: Linux
Homepage: search.cpan.org
Developed by:
SYNOPSIS
my $index = CPAN::SQLite::Index->new(setup => 1);
$index->index();
This is the main module used to set up or update the database tables used to store information from the CPAN and ppm indices. The creation of the object
my $index = CPAN::SQLite::Index->new(%args);
accepts two possible arguments:
- setup => 1
This (optional) argument specifies that the database is being set up. Any existing tables will be dropped.
- reindex => value
This (optional) argument specifies distribution names that one would like to reindex in an existing database. These may be specified as either a scalar, for a single distribution, or as an array reference for a list of distributions.