If you are not doing anything too powerful (seeing as how you used a flat text file, I gather you are not) and you are using the ActiveState build of Perl, you can use the Win32::OLE module with a DSN like in the following:
#!/usr/local/bin/perl -w
use strict;
=head
Win32::OLE using a System DSN called testconn
Objectives: Read stuff from an MSAccess database to prove that thi
+s works
Error handling tests
=cut
use OLE;
my $Conn = CreateObject OLE "ADODB.Connection";
$Conn->Open("DSN=testconn");
my $RS = $Conn->Execute("Select * from Customers");
if (!$RS)
{
my $Errors = $Conn->Errors();
my $error;
foreach $error (keys %$Errors)
{
print $error->{Description}, "\n";
}
}
while(!$RS->EOF)
{
print $RS->Fields('CustomerID')->value, "\n", $RS->Fields(2)->value,"\
+n";
$RS->movenext();
}
1;
I suppose you can look around for more information on Win32::OLE on the web. The perldoc includes more examples on how to access Microsoft Excel.
Celebrate Intellectual Diversity
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.