Re: control function pgsql with script bash

From: Joshua Tolley <eggyknap(at)gmail(dot)com>
To: manuel antonio ochoa <manuel8aalfaro(at)gmail(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: control function pgsql with script bash
Date: 2011-01-25 17:05:26
Message-ID: 4d3f02f3.c9e82a0a.3c9a.6881@mx.google.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Tue, Jan 25, 2011 at 10:46:58AM -0600, manuel antonio ochoa wrote:
> Good morning
>
> I want to check if the function pgsql execute correctly into my bash
> script .
> I have something like this :
>
> /var/lib/pgsql/bin/./psql -U 'USER' -d DATABSE -p 5432 -h iphost -c
> "select antros.changethenames( )"
>
> how can i get the error if the function changethenames() send me one. ?
>
> thnks

See http://www.postgresql.org/docs/9.0/static/app-psql.html#AEN74212

Turn on ON_ERROR_STOP, and psql will give you an exit status of 3 when
something goes wrong in your script. I don't know of a way, aside from parsing
the output, that you can identify exactly where the problem arose.

--
Joshua Tolley / eggyknap
End Point Corporation
http://www.endpoint.com

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message manuel antonio ochoa 2011-01-25 17:39:23 Benchmarking
Previous Message Joshua Tolley 2011-01-25 17:02:02 Re: create geometry by lat/long