Re: [GENERAL] sharing tcl proc's between functions

2004-06-30 Thread Tom Lane
"Bob Parkinson" <[EMAIL PROTECTED]> writes: > Is it possible to share some TCL proc's between a set of functions? Sure. IIRC all pltcl functions run in a backend share one interpreter (and pltclu functions share a second one). You might look at the "pltcl_modules" code as a convenient way of get

[GENERAL] sharing tcl proc's between functions

2004-06-30 Thread Bob Parkinson
Hi, Is it possible to share some TCL proc's between a set of functions? Something like proc mything { } proc otherthing { } create function wantsthings (text) returns text as ' return [mything [otherthing fubar]] ' language 'pltcl'; Cheers, Bob This message has been scanned