59a4cd300e2b9a217c2a7b6a9b139c1347dad722
[catagits/Catalyst-Manual.git] / lib / Catalyst / Manual / Tutorial / 09_AdvancedCRUD.pod
1 =head1 NAME
2
3 Catalyst::Manual::Tutorial::09_AdvancedCRUD - Catalyst Tutorial - Chapter 9: Advanced CRUD
4
5
6 =head1 OVERVIEW
7
8 This is B<Chapter 9 of 10> for the Catalyst tutorial.
9
10 L<Tutorial Overview|Catalyst::Manual::Tutorial>
11
12 =over 4
13
14 =item 1
15
16 L<Introduction|Catalyst::Manual::Tutorial::01_Intro>
17
18 =item 2
19
20 L<Catalyst Basics|Catalyst::Manual::Tutorial::02_CatalystBasics>
21
22 =item 3
23
24 L<More Catalyst Basics|Catalyst::Manual::Tutorial::03_MoreCatalystBasics>
25
26 =item 4
27
28 L<Basic CRUD|Catalyst::Manual::Tutorial::04_BasicCRUD>
29
30 =item 5
31
32 L<Authentication|Catalyst::Manual::Tutorial::05_Authentication>
33
34 =item 6
35
36 L<Authorization|Catalyst::Manual::Tutorial::06_Authorization>
37
38 =item 7
39
40 L<Debugging|Catalyst::Manual::Tutorial::07_Debugging>
41
42 =item 8
43
44 L<Testing|Catalyst::Manual::Tutorial::08_Testing>
45
46 =item 9
47
48 B<09_Advanced CRUD>
49
50 =item 10
51
52 L<Appendices|Catalyst::Manual::Tutorial::10_Appendices>
53
54 =back
55
56
57 =head1 DESCRIPTION
58
59 This chapter of the tutorial explores more advanced functionality for
60 Create, Read, Update, and Delete (CRUD) than we saw in Chapter 4.  In
61 particular, it looks at a number of techniques that can be useful for
62 the Update portion of CRUD, such as automated form generation,
63 validation of user-entered data, and automated transfer of data between
64 forms and model objects.
65
66 In keeping with the Catalyst (and Perl) spirit of flexibility, there are 
67 many different ways to approach advanced CRUD operations in a Catalyst 
68 environment.  Therefore, this section of the tutorial allows you to pick 
69 from one of several modules that that cover different form management 
70 tools.  Select one or more options from the list below.
71
72 =head1 ADVANCED CRUD OPTIONS
73
74 =over 4
75
76 =item *
77
78 L<FormFu|Catalyst::Manual::Tutorial::09_AdvancedCRUD::09_FormFu>
79
80 =item *
81
82 L<FormBuilder|Catalyst::Manual::Tutorial::09_AdvancedCRUD::09_FormBuilder>
83
84 =back
85
86 B<NOTE:> Please contact the author if you would like to assist with 
87 writing a new module.
88
89
90 =head1 AUTHOR
91
92 Kennedy Clark, C<hkclark@gmail.com>
93
94 Please report any errors, issues or suggestions to the author.  The
95 most recent version of the Catalyst Tutorial can be found at
96 L<http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Manual/5.70/trunk/lib/Catalyst/Manual/Tutorial/>.
97
98 Copyright 2006-2008, Kennedy Clark, under Creative Commons License
99 (L<http://creativecommons.org/licenses/by-sa/3.0/us/>).