cusp
02-16-03, 19:40
| Hi all, I wanted to know if it is possible to connect to MS-Access database from a Perl script, on a Windows-2000 box.Searched the net for some tutorials, but could not find any.Could anyone help me out?? -Cusp |
View Full Version : Newbie:Accessing MS-Access from Perl
| Hi all, I wanted to know if it is possible to connect to MS-Access database from a Perl script, on a Windows-2000 box.Searched the net for some tutorials, but could not find any.Could anyone help me out?? -Cusp |
| like suggested above; ... use Win32::ODBC; $dsn = "<yourDSNtoACCESS>"; $db = new Win32::ODBC($dsn); ... $sql3 ="select * from blabla WHERE blabla.."; $db->Sql($sql); ... |