X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2F04_BasicCRUD.pod;h=e63500dc7c53db584f11d4d5bf5bf2bc5db754b8;hp=3e7e02ebe5ceac136b31c7ec36ef0f5d839cf16e;hb=2a6eb5f9e3b1b3a8dacd724bb8ab87ba18f733a5;hpb=fce83e5f2a2da9f9117562d05aec1e161cc3c109 diff --git a/lib/Catalyst/Manual/Tutorial/04_BasicCRUD.pod b/lib/Catalyst/Manual/Tutorial/04_BasicCRUD.pod index 3e7e02e..e63500d 100644 --- a/lib/Catalyst/Manual/Tutorial/04_BasicCRUD.pod +++ b/lib/Catalyst/Manual/Tutorial/04_BasicCRUD.pod @@ -1066,9 +1066,9 @@ time entered for it (see the last line in the listing below): Notice in the debug log that the SQL DBIC generated has changed to incorporate the datetime logic: - INSERT INTO book ( created, rating, title, updated) VALUES ( ?, ?, ?, ? ): + INSERT INTO book ( created, rating, title, updated ) VALUES ( ?, ?, ?, ? ): '2009-05-25 20:39:41', '5', 'TCPIP_Illustrated_Vol-2', '2009-05-25 20:39:41' - INSERT INTO book_author ( author_id, book_id) VALUES ( ?, ? ): '4', '10' + INSERT INTO book_author ( author_id, book_id ) VALUES ( ?, ? ): '4', '10' =head2 Create a ResultSet Class