|
From: Oleg B. <ph...@ph...> - 2013-09-12 17:16:00
|
Hi!
On Thu, Sep 12, 2013 at 02:07:48PM -0300, Francisco Chiotta <fra...@gm...> wrote:
> Hello,
> I have a question related with the connections. I am using the
> following code for that:
>
> try:
> connection = connectionForURI('postgres://'+user+':'+password+'@
> '+host+'/'+database)
> sqlhub.processConnection = connection
> connection.query("SELECT 1")
> except OperationalError:
> print "error"
>
> but, I don't know if the error is because the user and password are wrong
> or the sever is not working. How can I verify that? for example, maybe,
> with a error code but I don't know how to get it.
Hope this helps:
except OperationalError, e:
print "error:", e
Oleg.
--
Oleg Broytman http://phdru.name/ ph...@ph...
Programmers don't die, they just GOSUB without RETURN.
|