Automatically mark the cap. framework methods as unimplemented for replication
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Cursor.pm
index 065e195..14816ab 100644 (file)
@@ -3,6 +3,8 @@ package DBIx::Class::Cursor;
 use strict;
 use warnings;
 
+use base qw/DBIx::Class/;
+
 =head1 NAME
 
 DBIx::Class::Cursor - Abstract object representing a query cursor on a
@@ -28,8 +30,6 @@ information.
 
 =head2 new
 
-=back
-
 Virtual method. Returns a new L<DBIx::Class::Cursor> object.
 
 =cut
@@ -40,9 +40,8 @@ sub new {
 
 =head2 next
 
-=back
-
-Virtual method. Advances the cursor to the next row.
+Virtual method. Advances the cursor to the next row. Returns an array of
+column values (the result of L<DBI/fetchrow_array> method).
 
 =cut
 
@@ -52,8 +51,6 @@ sub next {
 
 =head2 reset
 
-=back
-
 Virtual method. Resets the cursor to the beginning.
 
 =cut
@@ -64,8 +61,6 @@ sub reset {
 
 =head2 all
 
-=back
-
 Virtual method. Returns all rows in the L<DBIx::Class::ResultSet>.
 
 =cut