Thread: output
Hello all, I am interested on how can i put output data for debugging purposes. Any sample will be very good! Thanks, /Marian
On Thursday 02 October 2003 09:52, Popeanga Marian wrote: > Hello all, > > > I am interested on how can i put output data for debugging > purposes. Any sample will be very good! Output what data when? To what? If you can describe your situation, I'm sure we can come up with something to help. -- Richard Huxton Archonet Ltd
<br /><br /> Richard Huxton wrote:<br /><blockquote cite="mid200310021201.06107.dev@archonet.com" type="cite"><pre wrap="">OnThursday 02 October 2003 09:52, Popeanga Marian wrote: </pre><blockquote type="cite"><pre wrap=""> Hello all, I am interested on how can i put output data for debugging purposes. Any sample will be very good! </pre></blockquote><pre wrap=""> Output what data when? To what? If you can describe your situation, I'm sure we can come up with something to help. </pre></blockquote><pre> Inside a plpgsql block . RAISE NOTICE ''Operation performed!'';</pre> Now if i don't use psqlfrom where i can read the output ?<br /><br /> Thanks,<br /> /Marian<br />
On Thursday 02 October 2003 12:09, Popeanga Marian wrote: > > Inside a plpgsql block . > RAISE NOTICE ''Operation performed!''; > > Now if i don't use psql from where i can read the output ? Ah - I think you need to set CLIENT_MIN_MESSAGES accordingly and then you can check for a non-fatal error code in your result-code. Never done it myself mind. -- Richard Huxton Archonet Ltd
Popeanga Marian <pmarian@cnlo.ro> writes: > Now if i don't use psql from where i can read the output ? If you're using libpq directly, you can install a notice processor hook routine to catch NOTICE messages. Otherwise they go to stderr. regards, tom lane
<br /> I am using libpg inside a plugin. <br /> For oracle conections i can read the server output with this packagedbms_output.read_line (... ).<br /> For pgsql is something similar for reading server output ?<br /> <br /> TomLane wrote:<br /><blockquote cite="mid27018.1065105315@sss.pgh.pa.us" type="cite"><pre wrap="">Popeanga Marian <a class="moz-txt-link-rfc2396E"href="mailto:pmarian@cnlo.ro"><pmarian@cnlo.ro></a> writes: </pre><blockquote type="cite"><prewrap="">Now if i don't use psql from where i can read the output ? </pre></blockquote><pre wrap=""> If you're using libpq directly, you can install a notice processor hook routine to catch NOTICE messages. Otherwise they go to stderr. regards, tom lane </pre></blockquote><br />
<br /><br /> Popeanga Marian wrote:<br /><blockquote cite="mid3F7CF68F.1070202@cnlo.ro" type="cite"></blockquote><br /> I am using libpg inside a plugin. <br /> For oracle conections i can read the server output with this package dbms_output.read_line(... ).<br /> For pgsql is something similar for reading server output ?<br /> <br /> Tom Lane wrote:<br/><blockquote cite="mid27018.1065105315@sss.pgh.pa.us" type="cite"><pre wrap="">Popeanga Marian <a class="moz-txt-link-rfc2396E"href="mailto:pmarian@cnlo.ro"><pmarian@cnlo.ro></a> writes: </pre><blockquote type="cite"><prewrap="">Now if i don't use psql from where i can read the output ? </pre></blockquote><pre wrap=""> If you're using libpq directly, you can install a notice processor hook routine to catch NOTICE messages. Otherwise they go to stderr. regards, tom lane </pre></blockquote><br /> Can you tell me more about how to install a notice processor hook routine to catch NOTICE messages?<br /><br /> Thanks,<br /> /Marian<br />