=head1 NAME
ORDB::CPANRelease::Release - ORDB::CPANRelease class for the release table
=head1 DESCRIPTION
TO BE COMPLETED
=head1 METHODS
=head2 base
# Returns 'ORDB::CPANRelease'
my $namespace = ORDB::CPANRelease::Release->base;
Normally you will only need to work directly with a table class,
and only with one ORLite package.
However, if for some reason you need to work with multiple ORLite packages
at the same time without hardcoding the root namespace all the time, you
can determine the root namespace from an object or table class with the
C method.
=head2 table
# Returns 'release'
print ORDB::CPANRelease::Release->table;
While you should not need the name of table for any simple operations,
from time to time you may need it programatically. If you do need it,
you can use the C
method to get the table name.
=head2 select
# Get all objects in list context
my @list = ORDB::CPANRelease::Release->select;
# Get a subset of objects in scalar context
my $array_ref = ORDB::CPANRelease::Release->select(
'where > ? order by ',
1000,
);
The C