53 lines
1.6 KiB
Plaintext
53 lines
1.6 KiB
Plaintext
SQL::Abstract::Complete - Generate complete SQL from Perl data structures
|
|
|
|
This module was inspired by the excellent SQL::Abstract, from which in
|
|
inherits. However, in trying to use the module, I found that what I really
|
|
wanted to do was generate complete SELECT statements including joins and group
|
|
by clauses. So, I set out to create a more complete abstract SQL generation
|
|
module. (To be fair, SQL::Abstract kept it's first $table argument
|
|
inflexible for backwards compatibility reasons.)
|
|
|
|
This module only changes the select() method and adds a small new wrinkle to
|
|
new(). Everything else from SQL::Abstract is inheritted as-is. Consequently,
|
|
you should read the SQL::Abstract documentation before continuing.
|
|
|
|
|
|
INSTALLATION
|
|
|
|
To install this module, run the following commands:
|
|
|
|
perl Makefile.PL
|
|
make
|
|
make test
|
|
make install
|
|
|
|
SUPPORT AND DOCUMENTATION
|
|
|
|
After installing, you can find documentation for this module with the
|
|
perldoc command.
|
|
|
|
perldoc SQL::Abstract::Complete
|
|
|
|
You can also look for information at:
|
|
|
|
RT, CPAN's request tracker
|
|
http://rt.cpan.org/NoAuth/Bugs.html?Dist=SQL-Abstract-Complete
|
|
|
|
AnnoCPAN, Annotated CPAN documentation
|
|
http://annocpan.org/dist/SQL-Abstract-Complete
|
|
|
|
CPAN Ratings
|
|
http://cpanratings.perl.org/d/SQL-Abstract-Complete
|
|
|
|
Search CPAN
|
|
http://search.cpan.org/dist/SQL-Abstract-Complete/
|
|
|
|
|
|
AUTHOR AND LICENSE
|
|
|
|
Gryphon Shafer, gryphon@cpan.org
|
|
|
|
This library is free software; you can redistribute it and/or modify
|
|
it under the same terms as Perl itself, either Perl version 5.8.4 or,
|
|
at your option, any later version of Perl 5 you may have available.
|