in reply to PostreSQL DBD

You might want to try DBD::PgPP (the pure perl driver)

which will sidestep any .dll issues/conflicts involving DBD::Pg (i.e., if it was compiled with a bad/old version of ssleay.dll) or you'll find out that your problem has nothing to do with DBD::Pg and it's some other module that's screwing you.

Replies are listed 'Best First'.
Re^2: PostreSQL DBD
by swesque (Initiate) on Nov 29, 2014 at 17:05 UTC
    Worked on first test with DBD-PgPP!!

    Also found another possible solution with Net::PostgreSQL which I haven't tested yet.

    Will probably proceed with your solution since I am somewhat familier with Perl DBI using ODBC.

    Thank you. -ga