• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/DBIx/Class/H27-Jan-2006-175103

t/H27-Jan-2006-2012

BuildH A D27-Jan-20061.7 KiB5445

Build.PLH A D27-Jan-2006392 1412

ChangesH A D27-Jan-2006220 85

MANIFESTH A D27-Jan-2006145 1211

META.ymlH A D27-Jan-2006366 1918

Makefile.PLH A D27-Jan-20061 KiB3020

READMEH A D27-Jan-2006720 2921

README

1NAME
2    DBIx::Class::WebForm - CRUD Methods For DBIx::Class
3
4SYNOPSIS
5        use base 'DBIx::Class::WebForm';
6
7        my $results = Data::FormValidator->check( ... );
8        my $film = Film->retrieve('Fahrenheit 911');
9        $film->update_from_form($results);
10        my $new_film = Film->create_from_form($results);
11
12DESCRIPTION
13    CRUD Methods For DBIx::Class.
14
15METHODS
16    $class->create_from_form($form)
17    $self->update_from_form($form)
18    $class->to_cgi
19    $self->to_field( $field, $how )
20    $class->column_type($col)
21
22AUTHOR
23    Matt S. Trout Sebastian Riedel, "sri@oook.de"
24
25LICENSE
26    This library is free software, you can redistribute it and/or modify it
27    under the same terms as Perl itself.
28
29