X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2F04_BasicCRUD.pod;h=2bf8d28318652c8cbdda0a148337cb1e8a18fad3;hb=513ae34af19a0b2d71231427093837631b06b5c3;hp=2b2498dec74cf17d24f4ad2afc1ecee5a31ef8d2;hpb=444d6b277933a652eb38bbeae072dbdfbe47c1c8;p=catagits%2FCatalyst-Manual.git diff --git a/lib/Catalyst/Manual/Tutorial/04_BasicCRUD.pod b/lib/Catalyst/Manual/Tutorial/04_BasicCRUD.pod index 2b2498d..2bf8d28 100644 --- a/lib/Catalyst/Manual/Tutorial/04_BasicCRUD.pod +++ b/lib/Catalyst/Manual/Tutorial/04_BasicCRUD.pod @@ -230,13 +230,10 @@ Ctrl+Reload your browser at the C page). You should now see the six DBIC debug messages similar to the following (where N=1-6): - SELECT author.id, author.first_name, author.last_name \ - FROM book_author me JOIN author author \ + SELECT author.id, author.first_name, author.last_name + FROM book_author me JOIN author author ON author.id = me.author_id WHERE ( me.book_id = ? ): 'N' -(The '\' characters won't actually appear in the output -- we are -using them as "line continuation markers" here.) - =head1 CONVERT TO A CHAINED ACTION