DBIx::Class::Storage::DBI::Role::QueryCounter - Role to add a query counter


NAME

DBIx::Class::Storage::DBI::Role::QueryCounter - Role to add a query counter


SYNOPSIS

    my $query_count = $schema->storage->query_count;


DESCRIPTION

Each time the schema does a query, increment the counter.


ATTRIBUTES

This package defines the following attributes.

head2 _query_count

Is the attribute holding the current query count. It defines a public reader called 'query_count' which you can use to access the total number of queries that DBIC has run since connection.


METHODS

This module defines the following methods.

_query_start

override on the method so that we count the queries.

_increment_query_count

Used internally. You won't need this unless you enjoy messing with the query count.


AUTHORS

See the DBIx::Class manpage for more information regarding authors.


LICENSE

You may distribute this code under the same terms as Perl itself.

 DBIx::Class::Storage::DBI::Role::QueryCounter - Role to add a query counter