Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
I get this error when i run this. install_driver(ADO) failed: Can't locate Win32/OLE/Variant.pm in @INC .... Thanks for any help.use DBI; $fn = $Form{'First Name'}; $ln = $Form{'Last Name'}; $ea = $Form{'Email Address'}; $pn = $Form{'Phone Number'}; $add = $Form{'Address'}; $dor = $Form{'Date Of Request'}; $ds = $Form{'submit date'}; $dbh = (DBI->connect ("DBI:ADO:File Name=$database")); $sql = "INSERT INTO vip (First_Name,Last_Name,Email_Address,Phone_Numb +er,Address,Date_Of_Request,Date_Submit) VALUES ('$fn','$ln','$ea','$p +n','$add','$dor','$ds')"; $dbh->Execute($sql); $dbh->Close();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: ADO Problems and Access
by VSarkiss (Monsignor) on Sep 11, 2002 at 21:24 UTC | |
by blm (Hermit) on Sep 12, 2002 at 02:29 UTC | |
|
Re: ADO Problems and Access
by blm (Hermit) on Sep 12, 2002 at 02:37 UTC |