Re: [GENERAL] Loosing connection with the database

2005-04-16 Thread Poul Mller Hansen
Poul Mller Hansen wrote: I'm using Postgresql version 7.4.7 and jdbc driver version pg74.215.jdbc3.jar. Do you have a clue on what's going on ? No, I don't. Do you have any more information? What is your code doing when it fails? Just issuing a

Re: [GENERAL] Loosing connection with the database

2005-04-12 Thread Poul Mller Hansen
This sort of thing has been seen to occur when multiple client-side threads try to use the same database connection without proper locking to ensure only one thread uses it at a time. See for example http://archives.postgresql.org/pgsql-hackers/2004-09/msg00104.php

Re: [GENERAL] Loosing connection with the database

2005-04-12 Thread Kris Jurka
On Tue, 12 Apr 2005, [UTF-8] Poul Møller Hansen wrote: I have rewritten the application so every client thread is opening a new database connection, and yesterday it happened again. --- 2005-04-11 12:27:54 ERROR: invalid string enlargement request size 1358954492 2005-04-11 12:27:54

Re: [GENERAL] Loosing connection with the database

2005-04-05 Thread Kris Jurka
On Sat, 2 Apr 2005, [ISO-8859-1] Poul Møller Hansen wrote: This sort of thing has been seen to occur when multiple client-side threads try to use the same database connection without proper locking to ensure only one thread uses it at a time. See for example

[GENERAL] Loosing connection with the database

2005-04-02 Thread Poul Mller Hansen
Hi, I'm experiencing some strange problems with a Java application which I have made. Suddently it looses connection with the database, and in the server log i can find: 2005-04-02 00:09:01 ERROR: invalid string enlargement request size 1358954492 2005-04-02 00:09:01 WARNING:

Re: [GENERAL] Loosing connection with the database

2005-04-02 Thread Tom Lane
=?UTF-8?B?UG91bCBNw7hsbGVyIEhhbnNlbg==?= [EMAIL PROTECTED] writes: I'm experiencing some strange problems with a Java application which I have made. Suddently it looses connection with the database, and in the server log i can find: 2005-04-02 00:09:01 ERROR: invalid string enlargement

Re: [GENERAL] Loosing connection with the database

2005-04-02 Thread Poul Møller Hansen
2005-04-02 00:09:01 ERROR: invalid string enlargement request size 1358954492 2005-04-02 00:09:01 WARNING: AbortTransaction and not in in-progress state 2005-04-02 00:09:01 FATAL: invalid frontend message type 82 This indicates the client code didn't follow the