vote up 2 vote down star
1

In Oracle's PL/SQL I can create a session based global variable with the package definition. With Postgresql's PLpg/SQL, it doesn't seem possible since there are no packages, only independent procedures and functions.

Here is the syntax for PL/SQL to declare g_spool_key as a global...

CREATE OR REPLACE PACKAGE tox IS
    	g_spool_key spool.key%TYPE := NULL;
    	TYPE t_spool IS REF CURSOR RETURN spool%ROWTYPE;
    	PROCEDURE begin_spool;
    	PROCEDURE into_spool
    		(
    		in_txt IN spool.txt%TYPE
    		);
    	PROCEDURE reset_spool;
    	FUNCTION end_spool
    		RETURN t_spool;
    	FUNCTION timestamp
    		RETURN VARCHAR2;
    END tox;

How would I implement a session based global variable with PLpg/SQL?

flag

51% accept rate

4 Answers

vote up 1 vote down

You could define some custom-variable-classes in your postgresql.conf and use it as connection-variables in your stored-procedure. See the docs.

Usage example for a custom-variable-class "imos":

imos=> set imos.testvar to 'foobar';
SET
Time: 0.379 ms
imos=> show imos.testvar;
 imos.testvar
--------------
 foobar
(1 row)

Time: 0.333 ms
imos=> set imos.testvar to 'bazbar';
SET
Time: 0.144 ms
imos=> show imos.testvar;
 imos.testvar
--------------
 bazbar
(1 row)

In stored-procedures you can use the built-in function current_setting('imos.testvar').

link|flag
Are these custom-variable-classes mutable? – dacracot Jan 6 at 19:30
yes, i have a class "imos" - psql output: imos=> set imos.testvar to 'foobar'; SET imos=> show imos.testvar; imos.testvar -------------- foobar imos=> set imos.testvar to 'bazbar'; SET imos=> show imos.testvar; imos.testvar -------------- bazbar – Endlessdeath Jan 6 at 21:36
vote up 0 vote down

From the Postgresql forums...

So, a couple of questions....

  1. Can you declare global values from plpgsql?
  2. If so, is there a way of avoiding namespace pollution? (perhaps the equivalent to Oracle's use of plsql package variables)

plpgsql does not have global variables.

link|flag
vote up 0 vote down

PostgreSQL doesn't support global (session) variables, but you should use some tricks

http://www.pgsql.cz/index.php/PostgreSQL_SQL_Tricks#Any_other_session_variables http://www.postgresql.org/docs/8.3/static/plperl-global.html

regards Pavel Stehule

link|flag
vote up 0 vote down

Unfortunately there are no global variables in PL/pgSQL, although you can find ones in other PL languages that come with PostgreSQL, specifically in PL/Perl, PL/Python and PL/Tcl

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.