ORDB::AU::Census2006::BcpMetaColumn - ORDB::AU::Census2006 class for the bcp_meta_column table
TO BE COMPLETED
TO BE COMPLETED
# Get all objects in list context my @list = ORDB::AU::Census2006::BcpMetaColumn->select; # Get a subset of objects in scalar context my $array_ref = ORDB::AU::Census2006::BcpMetaColumn->select( 'where > ? order by ', 1000, );
The select
method executes a typical SQL SELECT
query on the bcp_meta_column table.
It takes an optional argument of a SQL phrase to be added after the FROM bcp_meta_column
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 ORDB::AU::Census2006::BcpMetaColumn objects when called in list context, or a reference to an ARRAY
of ORDB::AU::Census2006::BcpMetaColumn objects when called in scalar context.
Throws an exception on error, typically directly from the DBI layer.
# How many objects are in the table my $rows = ORDB::AU::Census2006::BcpMetaColumn->count; # How many objects my $small = ORDB::AU::Census2006::BcpMetaColumn->count( 'where > ?', 1000, );
The count
method executes a SELECT COUNT(*)
query on the bcp_meta_column table.
It takes an optional argument of a SQL phrase to be added after the FROM bcp_meta_column
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 the number of objects that match the condition.
Throws an exception on error, typically directly from the DBI layer.
REMAINING ACCESSORS TO BE COMPLETED
The bcp_meta_column table was originally created with the following SQL command.
CREATE TABLE bcp_meta_column ( column_id TEXT NOT NULL, table_id TEXT NOT NULL, short TEXT NOT NULL, long TEXT NOT NULL )
ORDB::AU::Census2006::BcpMetaColumn is part of the ORDB::AU::Census2006 API.
See the documentation for ORDB::AU::Census2006 for more information.
Copyright 2009 Adam Kennedy.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.