Added resultsetcolumn question to FAQ
Jess Robinson [Sat, 14 Oct 2006 19:43:52 +0000 (19:43 +0000)]
lib/DBIx/Class/Manual/FAQ.pod

index 0c2ba53..2117896 100644 (file)
@@ -245,10 +245,16 @@ documentation.
 
 =over 4
 
-=item .. fetch as much data as possible in as few select calls as possible? (prefetch)
+=item .. fetch as much data as possible in as few select calls as possible?
 
 See the prefetch examples in the L<Cookbook|DBIx::Class::Manual::Cookbook>.
 
+=item .. fetch a whole column of data instead of a row?
+
+Call C<get_column> on a L<DBIx::Class::ResultSet>, this returns a
+L<DBIx::Class::ResultSetColumn>, see it's documentation and the
+L<Cookbook|DBIx::Class::Manual::Cookbook> for details.
+
 =back
 
 =head2 Inserting and updating data