The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/local/bin/perl -w

use strict;

use VCP::FilesDB;

my $db = VCP::FilesDB->new(
    @ARGV ? ( StoreLoc => shift ) : (),
    @ARGV ? ( TableName => shift) : ()
);
$db->open_existing_db;
$db->dump( \*STDOUT );
$db->close_db;