{ cursor_class => 'DBIx::Class::RowCountStatistics' },
);
+=head1 WARNING
+
+This module overrides internal L<DBIx::Class> functionality, and might
+break with every update.
+
=head1 DESCRIPTION
This L<DBIx::Class::Storage::DBI::Cursor> subclass allows you to log the
called with the following signature:
sub query_complete {
- my ($self, $row_count, $sql, @bind_values) = @_;
+ my ($self, $row_count, $sql) = @_;
...
}
-B<Note>: The passing of the C<@bind_values> is currently not yet
-implemented, and no values will be passed yet.
-
=head1 AUTHOR
r.sedlacek@shadowcat.co.uk