X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2F03_MoreCatalystBasics.pod;h=904959c7090ad2be468bc8c9a49ad1efa4500cde;hp=38497afa9d2383533709e33fc21a36c750ecfdee;hb=513ae34af19a0b2d71231427093837631b06b5c3;hpb=a75d00fb83c6c47d6532ab974d7bd7fd54010362 diff --git a/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod b/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod index 38497af..904959c 100644 --- a/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod +++ b/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod @@ -560,6 +560,9 @@ tutorial. =head1 CREATE A SQLITE DATABASE In this step, we make a text file with the required SQL commands to +create a database table and load some sample data. We will use +SQLite (L), a popular database that is +lightweight and easy to use. Be sure to get at least version 3. Open create a database table and load some sample data. We will use L, a popular database that is lightweight and easy to use. Be sure to get at least version 3. Open @@ -649,13 +652,13 @@ required if you do a single SQL statement on the command line). Use your OS command prompt. Please note that here we have chosen to use 'singular' table names. This -is because the default inflection code for L +is because the default inflection code for L does NOT handle plurals. There has been much philosophical discussion on whether table names should be plural or singular. There is no one correct answer, as long as one makes a choice and remains consistent with it. If you prefer plural table names (e.g. they are easier and more natural to read) then you will need to pass it an inflect_map -option. See L for more information. +option. See L for more information. For using other databases, such as PostgreSQL or MySQL, see L. @@ -691,20 +694,20 @@ running this command: $ perl -MCatalyst::Model::DBIC::Schema -e \ 'print "$Catalyst::Model::DBIC::Schema::VERSION\n"' - 0.23 + 0.31 Please note the '\' above. Depending on your environment, you might be able to cut and paste the text as shown or need to remove the '\' character to that the command is all on a single line. -You should have version 0.23 or greater if you are following along +You should have version 0.31 or greater if you are following along with Debian 5. In other environments, you may need to run this command to install it directly from CPAN: $ sudo cpan Catalyst::Model::DBIC::Schema And re-run the version print command to verify that you are now at -0.23 or higher. +0.31 or higher. =head2 Create Static DBIx::Class Schema Files @@ -755,11 +758,6 @@ into files. =item * -C causes the help to include the -L DBIC component. - -=item * - And finally, C is the standard DBI connect string for use with SQLite. @@ -907,9 +905,9 @@ display something like: [debug] Statistics enabled [debug] Loaded plugins: .----------------------------------------------------------------------------. - | Catalyst::Plugin::ConfigLoader 0.22 | - | Catalyst::Plugin::StackTrace 0.09 | - | Catalyst::Plugin::Static::Simple 0.21 | + | Catalyst::Plugin::ConfigLoader 0.27 | + | Catalyst::Plugin::StackTrace 0.11 | + | Catalyst::Plugin::Static::Simple 0.25 | '----------------------------------------------------------------------------' [debug] Loaded dispatcher "Catalyst::Dispatcher" @@ -950,7 +948,7 @@ display something like: | /books/list | /books/list | '-------------------------------------+--------------------------------------' - [info] MyApp powered by Catalyst 5.80003 + [info] MyApp powered by Catalyst 5.80013 You can connect to your server at http://debian:3000 B Be sure you run the C