Taxi::Mysql::Query - extendable full-text index using mysql: abstract queries |
Taxi::Mysql::Query - extendable full-text index using mysql: abstract queries
##======================================================================== ## PRELIMINARIES
use Taxi::Mysql::Query;
##======================================================================== ## Constructors etc.
$q = $CLASS_OR_OBJ->new($subclass, %args);
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.
$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.
Perl by Larry Wall.
Bryan Jurish <moocow@ling.uni-potsdam.de>
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.
perl(1), Taxi::Mysql(3perl), Taxi::Mysql::Query::Base(3perl).
Taxi::Mysql::Query - extendable full-text index using mysql: abstract queries |