DBIx::Class::Storage::DBI::Role::QueryCounter.3pm

Langue: en

Autres versions - même langue

Version: 2010-06-04 (ubuntu - 24/10/10)

Section: 3 (Bibliothèques de fonctions)

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.

_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 DBIx::Class for more information regarding authors.

LICENSE

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