Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: exporting MS ACCESS tables into a CSV file

by davidrw (Prior)
on Jul 11, 2005 at 19:52 UTC ( [id://474073]=note: print w/replies, xml ) Need Help??


in reply to exporting MS ACCESS tables into a CSV file

DBI/DBD are well worth learning and this sounds like a good task to learn on... As for other methods, you could manually export in access, or write a vbscript thing to do it or maybe use Win32::OLE to control access to do it.

here's a snippet that shows how i set up a Class::DBI connection (you can use the same connection string for DBI):
our $dbopts = { AutoCommit=>0, LongTruncOk => 1, LongReadLen => 255 }; our $dsn = GBPVR::CDBI::mdb2dsn('C:\foo.mdb'); MyPackage::CDBI->set_db('Main', "dbi:ODBC:$dsn", '', '', $dbopts ); sub mdb2dsn { my $mdb = shift; return 'driver=Microsoft Access Driver +(*.mdb);dbq=' . $mdb; } 1;

DBI example (see the Tutorials as well):
use DBI; my $dbh = DBI->connect($dsn,$user,$pass,{ShowErrorStatement=>1,RaiseEr +ror => 1, AutoCommit=>0}); my $aref = $dbh->selectall_arrayref("select * from $table",{Slice=>{}} +); # gives ref to AoH

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://474073]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (3)
As of 2024-04-19 19:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found