1 package DBIx::Class::Storage::DBI::Cursor;
3 use base qw/DBIx::Class::Cursor/;
10 DBIx::Class::Storage::DBI::Cursor - Object representing a query cursor on a
15 my $cursor = $schema->resultset('CD')->cursor();
16 my $first_cd = $cursor->next;
20 A Cursor represents a query cursor on a L<DBIx::Class::ResultSet> object. It
21 allows for traversing the result set with L</next>, retrieving all results with
22 L</all> and resetting the cursor with L</reset>.
24 Usually, you would use the cursor methods built into L<DBIx::Class::ResultSet>
25 to traverse it. See L<DBIx::Class::ResultSet/next>,
26 L<DBIx::Class::ResultSet/reset> and L<DBIx::Class::ResultSet/all> for more
33 Returns a new L<DBIx::Class::Storage::DBI::Cursor> object.
38 my ($class, $storage, $args, $attrs) = @_;
39 $class = ref $class if ref $class;
46 _dbh_gen => $storage->{_dbh_gen},
49 return bless ($new, $class);
58 =item Return Value: \[ $sql, @bind ]
62 Returns the SQL statement and bind vars associated with the invocant.
69 my $storage = $self->{storage};
70 my $sql_maker = $storage->sql_maker;
71 local $sql_maker->{for};
73 my @args = $storage->_select_args(@{$self->{args}});
74 my ($sql, $bind) = $storage->_prep_for_execute(@args[0 .. 2], [@args[4 .. $#args]]);
75 return \[ "($sql)", @{ $bind || [] }];
84 =item Return Value: \@row_columns
88 Advances the cursor to the next row and returns an array of column
89 values (the result of L<DBI/fetchrow_array> method).
94 my ($storage, $dbh, $self) = @_;
96 $self->_check_dbh_gen;
97 if ($self->{attrs}{rows} && $self->{pos} >= $self->{attrs}{rows}) {
98 $self->{sth}->finish if $self->{sth}->{Active};
102 return if $self->{done};
103 unless ($self->{sth}) {
104 $self->{sth} = ($storage->_select(@{$self->{args}}))[1];
105 if ($self->{attrs}{software_limit}) {
106 if (my $offset = $self->{attrs}{offset}) {
107 $self->{sth}->fetch for 1 .. $offset;
111 my @row = $self->{sth}->fetchrow_array;
123 $self->{storage}->dbh_do($self->can('_dbh_next'), $self);
130 =item Arguments: none
132 =item Return Value: \@row_columns+
136 Returns a list of arrayrefs of column values for all rows in the
137 L<DBIx::Class::ResultSet>.
142 my ($storage, $dbh, $self) = @_;
144 $self->_check_dbh_gen;
145 $self->{sth}->finish if $self->{sth}->{Active};
147 my ($rv, $sth) = $storage->_select(@{$self->{args}});
148 return @{$sth->fetchall_arrayref};
153 if ($self->{attrs}{software_limit}
154 && ($self->{attrs}{offset} || $self->{attrs}{rows})) {
155 return $self->next::method;
157 $self->{storage}->dbh_do($self->can('_dbh_all'), $self);
162 Resets the cursor to the beginning of the L<DBIx::Class::ResultSet>.
169 # No need to care about failures here
170 eval { $self->{sth}->finish if $self->{sth} && $self->{sth}->{Active} };
178 delete $self->{done};
186 if($self->{_dbh_gen} != $self->{storage}->{_dbh_gen}) {
187 $self->{_dbh_gen} = $self->{storage}->{_dbh_gen};
195 # None of the reasons this would die matter if we're in DESTROY anyways
197 eval { $self->{sth}->finish if $self->{sth} && $self->{sth}->{Active} };