pl/perl library question

From: "LLC" <kevin(at)kevinkempterllc(dot)com>
To: pgsql-interfaces(at)postgresql(dot)org
Subject: pl/perl library question
Date: 2006-06-23 20:15:15
Message-ID: 1151093715.v2.fusewebmail-164106@ffuse12
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

Hi List;

I'm getting a library 'not fount' error when I run a pl/perl function.
Here's what I've done:

1) I'm on a Red Hat RHEL4 box with many many perl versions/installs and
the dev team is using them all. I do not want to step on anyone's dev
efforts so I downloaded and installed my own perl install in
/usr/local/pgsperl

2) next I set the following:
export PATH=/usr/local/pgsperl/bin:$PATH
export PERL5LIB=/usr/local/pgsperl/lib
export MANPATH=/usr/local/pgsperl/man:$MANPATH
export SYBASE=/usr/local/TDS # for freetds

3) with the above env variables set I installed DBI via:
perl -MCPAN -e 'install Bundle::DBI'

4) next I installed DBD::Sybase via the source. Ran make install and it
installed in
/usr/local/pgsperl/lib/site_perl/5.8.7/x86_64-linux/auto/DBD/Sybase

5) I wrote a test perl script that connects to a Sql Server db, and
executes a select count(*) for a table. Running this script works.

6) created a function based on untrusted perl that executes a select of a
remote sql Server db table.

7) created an sql stmt to select * from this function

I've also created the same function and sql stmt on my laptop running SuSE
10 and postgres and the function works fine. The SuSE laptop has only the
default perl install.

I can create the function (sybase_get) on the RHEL with no problems,
however when I run the select (see below) which works on the SuSE laptop I
get the following error:

########## SQL STMT #########
select * from sybase_get() as (loc_parent_id varchar(100),
cricket_location_id_key varchar(100));

######### errors returned #################
$ psql pltest < tst7.sql
ERROR: error from Perl function: install_driver(Sybase) failed: Can't
load
'/usr/lib64/perl5/site_perl/5.8.5/x86_64-linux-thread-multi/auto/DBD/Sybase/Sybase.so'
for module DBD::Sybase: libct.so.3: cannot open shared object file: No
such file or directory at
/usr/lib64/perl5/5.8.5/x86_64-linux-thread-multi/DynaLoader.pm line 230.
at line 3
Compilation failed in require at line 3.
Perhaps a required shared library or dll isn't installed where expected
at line 5

It seems that pl/perl is looking in
/usr/lib64/perl5/site_perl/5.8.5/x86_64-linux-thread-multi/auto

Is there a way to tell postgres to look in
/usr/local/pgsperl/lib/site_perl/5.8.7/x86_64-linux/auto ?

Thanks in advance for your help.

Responses

Browse pgsql-interfaces by date

  From Date Subject
Next Message Andy Shellam 2006-06-24 12:13:31 Re: pl/perl library question
Previous Message Joost Kraaijeveld 2006-06-22 16:28:43 Re: [JDBC] How to notify JBoss J2EE application in a