Class-DBI-Factory

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

0.80
    - Should be a drop-in replacement, with subclasses working exactly
      as before, but much extended:
    - Class::DBI::Factory::Exception now provides a base class for 
      systematic, mod_perl-friendly exception handling. All CDF family
      now throw exceptions based on Apache return codes.
    - CDF::Handler now much more useful and adaptable: includes full 
      request-handling skeleton that should allow handler classes of
      only a few lines.
    - CDF::Ghost added (from Delivery) to simplify handling of 
      object precursors (and deletion relics).
    - Demo application brought up to date. still doesn't store, though.
    - We now have tests for all modules except the Handler, which is
      only use_ok'd. Apache integration is needed for Handler tests :(

0.77
    - minor tweaks to handler base class provide a better way to set
      mime type during response cycle.

0.76  Tues 22 June 2004
    - Brought up to date with Class::DBI 0.96 and Ima::DBI 0.33

lib/Class/DBI/Factory/Ghost.pm  view on Meta::CPAN

package Class::DBI::Factory::Ghost;
use strict;
use vars qw( $VERSION $AUTOLOAD );
$VERSION = '0.04';

=head1 NAME

Class::DBI::Factory::Ghost - a minimal data-container used as a precursor for Class::DBI objects when populating forms or otherwise preparing to create a new object from existing data.

=head1 SYNOPSIS

my $thing = Class::DBI::Factory::Ghost->new({
    id => 'new',
    moniker => $moniker,
    person => $self->session->person,
    parent => $self->param('parent'),
});



( run in 0.338 second using v1.01-cache-2.11-cpan-4d50c553e7e )