debug a mess - Mailing list pgsql-interfaces

From Wei Weng
Subject debug a mess
Date
Msg-id 20030225134154.A23392@example.com
Whole thread Raw
Responses Re: debug a mess
List pgsql-interfaces
I am trying to figure out where the "NOTICE:  current transaction is aborted,
queries ignored until end of transaction block" comes from in my code.
Basically, this is what it does:

CString strQuery 
= "SELECT datname FROM pg_database WHERE name = 'mydatabase'";

if (NULL == (res = PQexec(pgconn, (CSTR) strQuery)))
{   ErrorQuit(PQerrorMessage(pgconn));
}

It is really very simple code, but each time I try to run it, the postgresql
backend gives me the "transaction aborted" error message. I checked the
mailing list archive, and Tom once explained that the reason for this error
message is the backend had quitted for some reason. Is there anyway to see
why the backend aborted the transaction?? It could be really helpful.


Thanks


Wei



pgsql-interfaces by date:

Previous
From: "Agrawal, Manish"
Date:
Subject: Re: PgAdmin problem
Next
From: Matthew Vanecek
Date:
Subject: Re: Using LISTEN/NOTIFY with ecpg