DBIx::Class::WebForm - CRUD Methods For DBIx::Class


DBIx-Class-WebForm documentation  | view source Contained in the DBIx-Class-WebForm distribution.

Index


NAME

Top

DBIx::Class::WebForm - CRUD Methods For DBIx::Class

SYNOPSIS

Top

    use base 'DBIx::Class::WebForm';

    my $results = Data::FormValidator->check( ... );
    my $film = Film->retrieve('Fahrenheit 911');
    $film->update_from_form($results);
    my $new_film = Film->create_from_form($results);

DESCRIPTION

Top

CRUD Methods For DBIx::Class.

METHODS

Top

$class->create_from_form($form)
$self->update_from_form($form)
$class->to_cgi
$self->to_field( $field, $how )
$class->column_type($col)

AUTHOR

Top

Matt S. Trout Sebastian Riedel, sri@oook.de

LICENSE

Top

This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.


DBIx-Class-WebForm documentation  | view source Contained in the DBIx-Class-WebForm distribution.