stored procedure

Started by chetan Nover 17 years ago2 messages
#1chetan N
chetan622@gmail.com

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....

#2Merlin Moncure
mmoncure@gmail.com
In reply to: chetan N (#1)
Re: stored procedure

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