File Coverage

blib/lib/DBIx/Knowledge.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             #
2             # $Id: Knowledge.pm,v 1.1 2005/06/30 02:01:39 rsandberg Exp $
3             #
4              
5              
6             package DBIx::Knowledge;
7              
8 1     1   6517 use strict;
  1         2  
  1         34  
9 1     1   5 use Exporter;
  1         2  
  1         40  
10              
11 1     1   4 use vars qw( $REPORT_TOTAL_KEY $VERSION );
  1         6  
  1         109  
12              
13             $VERSION = '1.13';
14              
15             $REPORT_TOTAL_KEY = 'REPORT_TOTAL';
16              
17              
18             our @EXPORT_OK = qw( $REPORT_TOTAL_KEY );
19              
20             our @ISA = qw(Exporter);
21              
22             =head1 NAME
23              
24             DBIx::Knowledge - Report creation on linear convergent data sets for Business Intelligence
25              
26             =head1 INTRODUCTION
27              
28             DBIx::Knowledge gives analysts and non-engineers the ability to create reports and drill-down into
29             an aggregated data set (database table or view). Furthermore, the available fields and data points to choose
30             from can be configured without writing any code.
31              
32             See SmartCruddy! for a quick-start and example implementation:
33              
34             L
35              
36             =cut
37              
38             1;
39              
40             __END__