Re: pl/pgSQL development environment

From: "Charles N(dot) Charotti" <ccharotti(at)yahoo(dot)com>
To: pgsql-novice(at)postgresql(dot)org, stafford(at)marine(dot)rutgers(dot)edu
Subject: Re: pl/pgSQL development environment
Date: 2008-08-04 20:13:11
Message-ID: 160214.78192.qm@web56907.mail.re3.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Regarding the question about packages from oracle and the PG functions implementation. PG does not have the package concept or library of pl/pgsql functions.

It just implements functions and they can be separated by user's different objets or different schema's objets.

You have this in PG so far, and it works pretty well in terms of operational uses. Maybe speaking about performance and organizations issues, it has to grow much more yet.

Regards,

Charles

--- El lun, 4/8/08, Wm.A.Stafford <stafford(at)marine(dot)rutgers(dot)edu> escribió:

> De: Wm.A.Stafford <stafford(at)marine(dot)rutgers(dot)edu>
> Asunto: [NOVICE] pl/pgSQL development environment
> Para: pgsql-novice(at)postgresql(dot)org
> Fecha: lunes, 4 agosto, 2008 3:40
> I have to convert a large number of Oracle pl/sql scripts to
> PostgreSQL
> 8.3 pl/pgSQL and
> I am stuck on the most basic part, how to do development
> with pl/pgSQL.
>
> First of all what is the development model for pl/pgSQL
> development, i.e.
> What is the 'industry standard' way edit, compile
> and test functions
> and procedures?
> I don't see any examples of a complete process in the
> documentation.
>
> I created the following simple function as a first try:
> CREATE OR REPLACE FUNCTION testfunc() RETURNS integer AS $$
> BEGIN
> RAISE DEBUG 'Output from testfunc';
> return 2 ;
> END ;
> $$ LANGUAGE plpgsql;
>
> Using both psql and pgADMINIII I was able to load and
> execute this and
> see 2 as the output but I did not
> see the output of the RAISE statement. The RAISE output
> was not in the
> log file either.
> Where does it go and can it be redirected to stdout?
>
> Since pl/pgSQL does not have packages, what is the usual
> way of managing
> groups of related functions and procedures. For example I
> have
> a group pl/sql procedures that call functions from a
> library. The
> library is one package. The procedures that
> use the library are in separate packages.
>
> Thanks for any help and/or guidance,
> Bill Stafford
>
> --
> Sent via pgsql-novice mailing list
> (pgsql-novice(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-novice

______________________________________________
Enviado desde Correo Yahoo! La bandeja de entrada más inteligente.

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message Tom Lane 2008-08-04 23:09:10 Re: pl/pgSQL development environment
Previous Message Richard Broersma 2008-08-04 19:59:48 Re: pl/pgSQL development environment