Taxi::Mysql::Query - extendable full-text index using mysql: abstract queries


NAME

Taxi::Mysql::Query - extendable full-text index using mysql: abstract queries

(Back to Top)


SYNOPSIS

 ##========================================================================
 ## PRELIMINARIES
 use Taxi::Mysql::Query;
 ##========================================================================
 ## Constructors etc.
 $q = $CLASS_OR_OBJ->new($subclass, %args);

(Back to Top)


DESCRIPTION

Taxi::Mysql::Query is just a wrapper class for creating query subclass objects. See the documentation of the base class Taxi::Mysql::Query::Base for details on query structure and API methods.

Constructors etc.

new
 $q = $CLASS_OR_OBJ->new($subclass, %args);

Abstract constructor. Really just a convenience wrapper for $subclass->new(%args) which prends ``Taxi::Mysql::Query::'' to $subclass if $subclass does not already inherit from Taxi::Mysql::Query.

(Back to Top)


ACKNOWLEDGEMENTS

Perl by Larry Wall.

(Back to Top)


AUTHOR

Bryan Jurish <moocow@ling.uni-potsdam.de>

(Back to Top)


COPYRIGHT AND LICENSE

Copyright (C) 2006 by Bryan Jurish

This package is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.7 or, at your option, any later version of Perl 5 you may have available.

(Back to Top)


SEE ALSO

perl(1), Taxi::Mysql(3perl), Taxi::Mysql::Query::Base(3perl).

(Back to Top)

 Taxi::Mysql::Query - extendable full-text index using mysql: abstract queries