Taxi::Mysql::Handle::Dummy - extendable full-text index using mysql: dummy database handles |
Taxi::Mysql::Handle::Dummy - extendable full-text index using mysql: dummy database handles
##======================================================================== ## PRELIMINARIES
use Taxi::Mysql::Handle::Dummy;
##======================================================================== ## Constructors etc.
$ih = $CLASS_OR_OBJ->new(%args);
##======================================================================== ## Connections
undef = $ih->_dbconnect();
##======================================================================== ## Package: dummy database handle
##======================================================================== ## Package: dummy statement handle
Taxi::Mysql::Handle::Dummy implements dummy backend database handles. These classes are only useful for debugging, and there is probably a much cleaner, prettier, and better way to accomplish the same task. Nonetheless, here they are...
(undocumented)
$ih = $CLASS_OR_OBJ->new(%args);
constructor
object structure: hash
{ ##-- SQL connection information dsn=>$mysql_dsn, ##-- see DBD::Mysql(3pm) ## + default "DBI:mysql:database=$ENV{LOGNAME}_db;host=localhost" user=>$user, ##-- user name password=>$password, ##-- password prefix=>$prefix, ##-- table prefix [default: '_textindex_'] ##-- verbosity behavior verbose => $vlevel, ##-- See Taxi::Mysql::Base dummy => $bool, ##-- don't do anything at all really ##-- low-level data dbh=>$database_handle, }
undef = $ih->_dbconnect()
(undocumented)
(undocumented)
(undocumented)
(undocumented)
(undocumented)
(undocumented)
(undocumented)
(undocumented)
(undocumented)
(undocumented)
(undocumented)
(undocumented)
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::Handle(3perl).
Taxi::Mysql::Handle::Dummy - extendable full-text index using mysql: dummy database handles |