The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Politics::AU::Geo::Electorates - Politics::AU::Geo class for the electorates table

SYNOPSIS

  TO BE COMPLETED

DESCRIPTION

TO BE COMPLETED

METHODS

select

  # Get all objects in list context
  my @list = Politics::AU::Geo::Electorates->select;
  
  # Get a subset of objects in scalar context
  my $array_ref = Politics::AU::Geo::Electorates->select(
      'where eid > ? order by eid',
      1000,
  );

The select method executes a typical SQL SELECT query on the electorates table.

It takes an optional argument of a SQL phrase to be added after the FROM electorates 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 Politics::AU::Geo::Electorates objects when called in list context, or a reference to an ARRAY of Politics::AU::Geo::Electorates objects when called in scalar context.

Throws an exception on error, typically directly from the DBI layer.

count

  # How many objects are in the table
  my $rows = Politics::AU::Geo::Electorates->count;
  
  # How many objects 
  my $small = Politics::AU::Geo::Electorates->count(
      'where eid > ?',
      1000,
  );

The count method executes a SELECT COUNT(*) query on the electorates table.

It takes an optional argument of a SQL phrase to be added after the FROM electorates 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.

ACCESSORS

eid

  if ( $object->eid ) {
      print "Object has been inserted\n";
  } else {
      print "Object has not been inserted\n";
  }

Returns true, or throws an exception on error.

REMAINING ACCESSORS TO BE COMPLETED

SQL

The electorates table was originally created with the following SQL command.

  CREATE TABLE electorates
  (
  eid INTEGER PRIMARY KEY,
  bblat1 varchar(20) NOT NULL,
  bblat2 varchar(20) NOT NULL,
  bblong1 varchar(20) NOT NULL,
  bblong2 varchar(20) NOT NULL,
  name varchar(255) NOT NULL,
  state varchar(10) NOT NULL,
  level varchar(10) NOT NULL,
  house  varchar(255) NOT NULL
  )

SUPPORT

Politics::AU::Geo::Electorates is part of the Politics::AU::Geo API.

See the documentation for Politics::AU::Geo for more information.

AUTHOR

Jeffery Candiloro <jeffery@cpan.org>

Adam Kennedy <adamk@cpan.org>

COPYRIGHT

Copyright 2009 Jeffery Candiloro.

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.