in reply to dbd::oracle HELP

This very humble monk would suggest you start by verifying that you have the DBI and DBD you need loaded properly. Something like
#!/usr/bin/perl use DBI; print qq{Available drivers: }. join(", ",&DBI::available_drivers()). qq{\n};

should return something like this: note Oracle appears alive and well in the list.

Available drivers: DBM, ExampleP, File, Gofer, Oracle, Proxy, Sponge

But what do I know, I'm not even an initiate yet. However I'm learning, thanks to the Monastery.

Replies are listed 'Best First'.
Re^2: dbd::oracle HELP
by westy032001 (Novice) on Oct 26, 2009 at 12:17 UTC
    Hello Thanks for your response, every input is welcome. The available drivers look ok and include the Oracle one. cheers Nick.