vote up 1 vote down star

I am using Perl to collect data from several logfiles and store it into an Oracle database on the same Windows 2003 host I am running my script on. Is it better to use the Perl DBI module or to set up a system DSN and use ODBC?

Thank you ahead of time!
Michael

flag

1 Answer

vote up 2 vote down check

DBI, or at least something based on DBI is the standard way of interracting with data bases in Perl. Then under DBI, you can use either a direct oracle driver (DBD::Oracle) or an ODBC driver (aptly named DBD::ODBC). So really it doesn't seem to matter much which one you use, at least not for your code.

As for a layer above DBI, I like DBIx::Simple, but there are others.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.