Tagged Questions
plperl/plperlu A perl language extension for use within the PostgreSQL object relational database for creating user defined functions.
5
votes
1answer
148 views
can you use libraries in PL/Perl
I'm just curious if when writing PL/Perl functions if I can have a use My::Lib; statement, or enable pragma's and features (e.g. 'use strict; use feature 'switch';).
3
votes
3answers
551 views
How to split a type into multiple columns in Postgres?
I have the following code to return multiple values from pl/python:
CREATE TYPE named_value AS (
name text,
value integer
);
CREATE or replace FUNCTION make_pair (name text, value integer)
...
3
votes
1answer
159 views
Does PostgreSQL keep its pl* interpreters loaded persistently?
If I wrote something in plperlu, when would that module be reloaded? Every time the function ran? The first time it ran? Does the Perl DLL get unloaded if it hasn't been used in a while, and then ...
2
votes
1answer
213 views
How can I call a PL/Perl function from another PL/Perl function?
CREATE FUNCTION foo() RETURNS text
LANGUAGE plperl
AS $$
return 'foo';
$$;
CREATE FUNCTION foobar() RETURNS text
LANGUAGE plperl
AS $$
return foo() . 'bar';
$$;
I'm ...
2
votes
3answers
2k views
IP address stored as decimal - PL/SQL to display as dotted quad
We have an Oracle database that contains IP addresses stored as decimal integers - this is incredibly painful when manipulating the data by hand instead of via the web interface, yet hand manipulation ...
1
vote
1answer
129 views
Returning MSSQL data using plperl function in PostgreSQL
I have a PostgreSQL database in use for a complex php web site (And VB.Net/C# management applications) which require access to execute stored procedures on a Microsoft SQL Server 2008 database. The ...
0
votes
1answer
42 views
PostgreSQL error: language “plperlu” does not exist
I am a beginner with PostgreSQL. I got a SQL patch of PostgreSQL and while executing the SQL to configure it at my end. I am getting following error. My background is MySQL.
Query
CREATE FUNCTION ...
0
votes
1answer
217 views
Debugging PL/Python functions
I just practiced some happy engineering and wrote lots of code without testing each step as I usually do.
So now I have a few hundred lines of code with an error somewhere... I am using pgAdmin III ...
0
votes
1answer
403 views
Strawberry Perl 5.12 as PostgreSQL 9.0's plperl on win32?
Has anyone had luck with this combination?
So far I've gotten the message:
ERROR: could not load library "C:/Program Files/PostgreSQL/9.0/lib/plperl.dll":
The specified module could not be found.
...
0
votes
3answers
66 views
Postgresql - how to disallow use of spaces in some string fields
I want to disallow the use of spaces in some text/varchar fields.
Even more, it would be best to have only a set of characters that are allowed to use there, like:
[a-zA-Z0-9_\-]
And I want to ...
-1
votes
2answers
231 views
Does plperlu reload Perl modules if they change?
If I wrote something in plperlu, and it used a Perl module (e.g. MyModule::Foo), when would that module be reloaded? Does it keep track of them like mod_perl's Apache2::Reload, so that a touch will ...