Re: Dynamic loading of Perl Code in Postgres functions

From: "Adam Rich" <adam(dot)r(at)sbcglobal(dot)net>
To: "'Jasbinder Singh Bali'" <jsbali(at)gmail(dot)com>, <pgsql-general(at)postgresql(dot)org>
Subject: Re: Dynamic loading of Perl Code in Postgres functions
Date: 2007-01-16 14:22:18
Message-ID: 078f01c73979$ba88ebf0$6400a8c0@dualcore
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general


You treat it like any other perl code (you don't have to do
anything special just because it's in postgres):

If it's pure perl code, see "require"

http://perldoc.perl.org/functions/require.html

If it's a perl module, see "use"

http://perldoc.perl.org/functions/use.html

If you want to access a C library using perl,
see XS:

http://perldoc.perl.org/perlxs.html
http://perldoc.perl.org/perlxstut.html

-----Original Message-----
From: pgsql-general-owner(at)postgresql(dot)org
[mailto:pgsql-general-owner(at)postgresql(dot)org] On Behalf Of Jasbinder Singh
Bali
Sent: Tuesday, January 16, 2007 8:07 AM
To: pgsql-general(at)postgresql(dot)org
Subject: [GENERAL] Dynamic loading of Perl Code in Postgres functions

Hi,
I have some perl code that I need to load dynamically in my postgres
function.
How can this be accomplished?
I can do it in C using shared objects but don't know how would the same
work
with perl.
Is there anything like shared objects in Perl or something.
Thanks,
Jas

---------------------------(end of broadcast)---------------------------
TIP 3: Have you checked our extensive FAQ?

http://www.postgresql.org/docs/faq

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Jasbinder Singh Bali 2007-01-16 14:24:22 Re: Dynamic loading of Perl Code in Postgres functions
Previous Message Jasbinder Singh Bali 2007-01-16 14:06:49 Dynamic loading of Perl Code in Postgres functions