Re: [GENERAL] Simple client messages from within pgPL/SQL

2005-02-23 Thread Andre Schnoor
> This may be too simplistic an answer, but can't you just have the function > return a text string and return the message you want to deliver back to the > client? Thanks for your reply. However, this won't work because the INFO messages are not the result or the function. They are a notification

Re: [GENERAL] Simple client messages from within pgPL/SQL

2005-02-23 Thread Terry Lee Tucker
This may be too simplistic an answer, but can't you just have the function return a text string and return the message you want to deliver back to the client? On Wednesday 23 February 2005 05:00 am, Andre Schnoor saith: > > I'm desparately seeking for a simple way to send messages to the client

Re: [GENERAL] Simple client messages from within pgPL/SQL

2005-02-23 Thread Andre Schnoor
> I'm desparately seeking for a simple way to send messages to the client > during the execution of large stored procedures. > > RAISE INFO 'Now Processing %', thisCustomer; > > Doesn't do it, because the client console is cluttered with verbose context > information (e.g. backtrace). It's imposs

[GENERAL] Simple client messages from within pgPL/SQL

2005-02-22 Thread Andre Schnoor
I'm desparately seeking for a simple way to send messages to the client during the execution of large stored procedures. RAISE INFO 'Now Processing %', thisCustomer; Doesn't do it, because the client console is cluttered with verbose context information (e.g. backtrace). It's impossible to foll