Thread: stored procedure

stored procedure

From
"chetan N"
Date:
Hey does anybody know how to call stored procedure written in pgsql using hibernate concecpt with java application... I wanted to know how mapping takes place. Please could anybody help me out....
 
 
 

Re: stored procedure

From
"Merlin Moncure"
Date:
On Tue, Sep 23, 2008 at 11:53 PM, chetan N <chetan622@gmail.com> wrote:
> Hey does anybody know how to call stored procedure written in pgsql using
> hibernate concecpt with java application... I wanted to know how mapping
> takes place. Please could anybody help me out....

This is the wrong mailing list.  -hackers is reserved for issues
dealing with postgresql development.

Postgres doesn't have stored procedures.  It has functions.  You
invoke them like this:

select func();
select * from func();

merlin