Updated: Added FAQ entries
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Manual / FAQ.pod
CommitLineData
8e40e7ef 1=head1 NAME
2
3Catalyst::Manual::FAQ - Frequently Asked Questions
4
5=head1 DESCRIPTION
6
45374ac6 7Frequently Asked Questions
8
9=head2 How do I regenerate the helper scripts?
10
11Create a new app with the same name and copy scripts/ to app directory
8e40e7ef 12
f35d8959 13=head2 I have added tables to my DB - how to autogenerate the classes?
14
15Just run the _create.pl script again with the same parameters, it will ignore
16the existing classes and create missing ones based on your DB layout.
17
18=head2 What is the difference between $c->forward and $c->response->redirect ?
19
20Forward will modify the flow control and neither reset the context object nor
21end the request cycle while a redirect will. See L<Catalyst::Manual::Intro>.
22
23=head1 AUTHORS
8e40e7ef 24
25Sebastian Riedel, C<sri@oook.de>
f35d8959 26Danijel Milicevic, C<me@danijel.de>
8e40e7ef 27
28=head1 COPYRIGHT
29
30This program is free software, you can redistribute it and/or modify it under
31the same terms as Perl itself.