Re: Dynamic loading of Perl Code in Postgres functions - Mailing list pgsql-general

From Adam Rich
Subject Re: Dynamic loading of Perl Code in Postgres functions
Date
Msg-id 078f01c73979$ba88ebf0$6400a8c0@dualcore
Whole thread Raw
In response to Dynamic loading of Perl Code in Postgres functions  ("Jasbinder Singh Bali" <jsbali@gmail.com>)
Responses Re: Dynamic loading of Perl Code in Postgres functions  ("Jasbinder Singh Bali" <jsbali@gmail.com>)
List 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@postgresql.org
[mailto:pgsql-general-owner@postgresql.org] On Behalf Of Jasbinder Singh
Bali
Sent: Tuesday, January 16, 2007 8:07 AM
To: pgsql-general@postgresql.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


pgsql-general by date:

Previous
From: "Gary Benade"
Date:
Subject: invalid byte sequence for encoding "UTF8"
Next
From: "Jasbinder Singh Bali"
Date:
Subject: Re: Dynamic loading of Perl Code in Postgres functions