From: Rudy Metzger <[EMAIL PROTECTED]>
> ERROR MESSAGE ---
> Can't locate auto/DBI/do.al in @INC...
It sounds like your DBI didn't get built correctly. If you think that it probably was
built right, then you can start by trying to find do.al:
Hi,
I am sure there are cleaner ways, but this works
for my scripts just fine.
use DBI;
$drh=DBI->install_driver('mysql') || warn "no Driver\n";
$dbh=$drh->connect("search:localhost","user_1") or warn "No connect\n";
$cursor=$dbh->prepare("select email from opt2 where resend=100");
$cursor->ex