| DBIx-Knowledge documentation | Contained in the DBIx-Knowledge distribution. |
DBIx::Knowledge::SQL - SQL generator base class
Virtual base class to generate RDBMS-specific SQL
must override/implement sql_rollup().
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: SQL.pm,v 1.1 2005/06/30 02:01:39 rsandberg Exp $ # package DBIx::Knowledge::SQL; use strict;
sub new { my ($caller) = @_; my $class = ref($caller) || $caller; my $obj = {}; return bless($obj,$class); } # Must be overridden sub sql_rollup { } 1; __END__