=head1 NAME ORDB::AU::Census2006::BcpCdB28 - ORDB::AU::Census2006 class for the bcp_cd_b28 table =head1 SYNOPSIS TO BE COMPLETED =head1 DESCRIPTION TO BE COMPLETED =head1 METHODS =head2 select # Get all objects in list context my @list = ORDB::AU::Census2006::BcpCdB28->select; # Get a subset of objects in scalar context my $array_ref = ORDB::AU::Census2006::BcpCdB28->select( 'where > ? order by ', 1000, ); The C query on the bcp_cd_b28 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 C 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 = ORDB::AU::Census2006::BcpCdB28->count; # How many objects my $small = ORDB::AU::Census2006::BcpCdB28->count( 'where > ?', 1000, ); The C method executes a C