Re: A common perl script for different database platforms



Hetal Soni <Hetal.Soni@xxxxxxxxx> wrote:
Below is code lines to use library for Oracle or DB2:

if ($opt_p eq "O") {
$DBType = "Oracle";
use DBD::Oracle;
};

if ($opt_p eq "D") {
$DBType = "DB2";
use DBD::DB2;
};

If I comment "use DBD::DB2;" line out and then compile it it works fine.

You don't have to "use" a DBD:: driver to connect to it; when you
call DBI's "connect" method, it will do that for you. Try removing both
"use" lines above and see if that solves it.

Cheers,
Tyler

.