Hi Chris, > Just getting started trying to pull some data from a fairly simple access > 97 database. What driver do I need to use to connect in this string.. > > my $dbh = DBI->connect('DBI:?????:framestats.mdb'); Connecting to an Access database on my box: my $dbh = DBI->connect( "dbi:ODBC:StudentDB", "", "", {RaiseError => 1, PrintError => 1, AutoCommit => 1} ) or die "Unable to connect: " . $DBI::errstr . "\n";
This is using a DSN called StudentDB. Hth, Shaun --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.413 / Virus Database: 232 - Release Date: 06/11/2002 -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]