| DBIx-Knowledge documentation | Contained in the DBIx-Knowledge distribution. |
DBIx::Knowledge - Report creation on linear convergent data sets for Business Intelligence
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:
DBIx::Knowledge::Report, SmartCruddy! http://www.thesmbexchange.com/smartcruddy/index.html, Cruddy! http://www.thesmbexchange.com/cruddy/index.html
Reed Sandberg, <reed_sandberg Ӓ yahoo>
Copyright (C) 2004-2008 Reed Sandberg
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.
| 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__