=head1 NAME CPANTS::Weight::DistWeight - CPANTS::Weight class for the dist_weight table =head1 SYNOPSIS TO BE COMPLETED =head1 DESCRIPTION TO BE COMPLETED =head1 METHODS =head2 select # Get all objects in list context my @list = CPANTS::Weight::DistWeight->select; # Get a subset of objects in scalar context my $array_ref = CPANTS::Weight::DistWeight->select( 'where id > ? order by id', 1000, ); The C query on the dist_weight table. It takes an optional argument of a SQL phrase to be added after the C section of the query, followed by variables to be bound to the placeholders in the SQL phrase. Any SQL that is compatible with SQLite can be used in the parameter. Returns a list of B objects when called in list context, or a reference to an ARRAY of B objects when called in scalar context. Throws an exception on error, typically directly from the L layer. =head2 count # How many objects are in the table my $rows = CPANTS::Weight::DistWeight->count; # How many objects my $small = CPANTS::Weight::DistWeight->count( 'where id > ?', 1000, ); The C method executes a C