Changed the sample SQL in the Cookbook 'Complex WHERE clauses' example to show use...
Norbert Buchmuller [Wed, 2 Sep 2009 01:53:21 +0000 (03:53 +0200)]
lib/DBIx/Class/Manual/Cookbook.pod

index a525b27..e7e14ea 100644 (file)
@@ -37,7 +37,10 @@ Sometimes you need to formulate a query using specific operators:
 
 This results in something like the following C<WHERE> clause:
 
-  WHERE artist LIKE '%Lamb%' AND title LIKE '%Fear of Fours%'
+  WHERE artist LIKE ? AND title LIKE ?
+
+And the following bind values for the placeholders: C<'%Lamb%'>, C<'%Fear of
+Fours%'>.
 
 Other queries might require slightly more complex logic: