new

Takes a single argument. The name of the database driver we want to be using. Currently, we support Oracle and mysql (with those capitalizations).

We work a little bit of magic to hand things off to the proper subclass's 'new' object. If this is just the wrong way to do things, point me in the right direction, please!

FetchResult

Takes a SELECT query as a string. Returns the first row as an array

NAME

DBIx::SearchBuilder::Handle - Perl extension which is a generic DBI handle

SYNOPSIS

  use DBIx::SearchBuilder::Handle;

 my $Handle = DBIx::SearchBuilder::Handle->new();
 $Handle->Connect( Driver => 'mysql',
		   Database => 'dbname',
		   Host => 'hostname',
		   User => 'dbuser',
		   Password => 'dbpassword');
 
 

DESCRIPTION

Jesse's a slacker.

Blah blah blah.

AUTHOR

Jesse Vincent, jesse@fsck.com

SEE ALSO

perl(1), DBIx::SearchBuilder