Updating Manual/Intro to reflect better -in => [] usage, adding myself to contributor...
J. Shirley [Mon, 12 Mar 2007 21:27:08 +0000 (21:27 +0000)]
lib/DBIx/Class.pm
lib/DBIx/Class/Manual/Intro.pod

index bc103a3..6160f08 100644 (file)
@@ -206,6 +206,8 @@ jesper: Jesper Krogh
 
 jguenther: Justin Guenther <jguenther@cpan.org>
 
+jshirley: J. Shirley <jshirley@gmail.com>
+
 konobi: Scott McWhirter
 
 LTJake: Brian Cassidy <bricas@cpan.org>
index 43e60cf..f5bf73d 100644 (file)
@@ -356,7 +356,7 @@ L<SQL::Abstract> construct to C<search>:
   my $rs = $schema->resultset('Album')->search({
     artist  => { '!=', 'Janis Joplin' },
     year    => { '<' => 1980 },
-    albumid => [ 1, 14, 15, 65, 43 ]
+    albumid => { '-in' => [ 1, 14, 15, 65, 43 ] }
   });
 
 This results in something like the following C<WHERE> clause: