DBIx::Knowledge - Report creation on linear convergent data sets for Business Intelligence


DBIx-Knowledge documentation Contained in the DBIx-Knowledge distribution.

Index


Code Index:

NAME

Top

DBIx::Knowledge - Report creation on linear convergent data sets for Business Intelligence

INTRODUCTION

Top

DBIx::Knowledge gives analysts and non-engineers the ability to create reports and drill-down into an aggregated data set (database table or view). Furthermore, the available fields and data points to choose from can be configured without writing any code.

See SmartCruddy! for a quick-start and example implementation:

http://www.thesmbexchange.com/smartcruddy/index.html

SEE ALSO

Top

DBIx::Knowledge::Report, SmartCruddy! http://www.thesmbexchange.com/smartcruddy/index.html, Cruddy! http://www.thesmbexchange.com/cruddy/index.html

AUTHOR

Top

Reed Sandberg, <reed_sandberg Ӓ yahoo>

COPYRIGHT AND LICENSE

Top


DBIx-Knowledge documentation Contained in the DBIx-Knowledge distribution.

#
# $Id: Knowledge.pm,v 1.1 2005/06/30 02:01:39 rsandberg Exp $
#


package DBIx::Knowledge;

use strict;
use Exporter;

use vars qw( $REPORT_TOTAL_KEY $VERSION );

$VERSION = '1.12';

$REPORT_TOTAL_KEY = 'REPORT_TOTAL';


our @EXPORT_OK = qw( $REPORT_TOTAL_KEY );

1;

__END__