Re: [GENERAL] re-post

1999-09-01 Thread amy cheng
>I can answer least 50% on all of your question only after reading the >"programmer's guide", >one night,( and was also doin' a Postgres+Apache+PHP installation in >parallel). >So did you rtfm? OK, I understand you are smart! BTW, what is "rtfm" ;-) > > the difference between PL/pgSQL and tcl (no

Re: [GENERAL] How to display user-defined functions?

1999-09-01 Thread José Soares
Your functions are stored in the table pg_proc. If you want to display the text of a function, try this: select PROSRC from pg_proc where proname = 'your_function_name'; José Teodor Cimpoesu ha scritto: > Mark Dalphin wrote: > > > > Hi, > > > > Is there a way to display user-defined functions