Re: problems with perl DBI:DBD mysql

2001-08-31 Thread Rodney Broom
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:

Re: problems with perl DBI:DBD mysql

2001-08-31 Thread dwilkers
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