Re: help with error message from perl Pg

From: Martijn van Oosterhout <kleptog(at)svana(dot)org>
To: Geoffrey <esoteric(at)3times25(dot)net>
Cc: pgsql-general(at)postgresql(dot)org, pgsql-interfaces(at)postgresql(dot)org
Subject: Re: help with error message from perl Pg
Date: 2006-06-20 13:59:45
Message-ID: 20060620135945.GB25678@svana.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-interfaces

On Tue, Jun 20, 2006 at 09:33:13AM -0400, Geoffrey wrote:
> We have an unusual problem with some perl code that is processing data
> via DBD facility. Basically, the code consists of various subroutines
> that are identified in a hash. The primary script then references the
> subroutines through a &$prog(...) syntax. What appears to happen is
> that all subroutines will run just fine if they do not need to do any
> deletes or updates to the database. Any subroutine that does a delete
> or update runs fine, but the subsequent routine fails with the following
> error:
>
> prgcaphlg: FATAL: invalid frontend message type 78

Errors in the FE-BE protocol are usually caused by users trying to use
the same connection from multiple threads simultaneously. libpq doesn't
handle that and so ends up sending things out of order.

Are you using threads?

Also, the database connection, how is the handle passed around? Youre
not closing it accedently somewhere?

Have a ncie day,
--
Martijn van Oosterhout <kleptog(at)svana(dot)org> http://svana.org/kleptog/
> From each according to his ability. To each according to his ability to litigate.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Kenneth Downs 2006-06-20 14:05:17 Re: Interface Guidance and Opinions Needed
Previous Message Chris Golden 2006-06-20 13:54:52 Interface Guidance and Opinions Needed

Browse pgsql-interfaces by date

  From Date Subject
Next Message Geoffrey 2006-06-20 14:20:19 Re: help with error message from perl Pg
Previous Message Geoffrey 2006-06-20 13:33:13 help with error message from perl Pg