RE: [JDBC] Fastpath error on solaris 2.8 pgsql 7.1.3

2001-08-28 Thread T . R . Missner
y, August 27, 2001 2:43 PM To: Missner, T. R. Cc: [EMAIL PROTECTED] Subject: Re: [JDBC] Fastpath error on solaris 2.8 pgsql 7.1.3 [EMAIL PROTECTED] writes: > FastPath call returned ERROR: lo_write: invalid large obj descriptor (0) Usually this indicates that you didn't have the lo_op

RE: [JDBC] Fastpath error on solaris 2.8 pgsql 7.1.3

2001-08-28 Thread chris markiewicz
[JDBC] Fastpath error on solaris 2.8 pgsql 7.1.3 [EMAIL PROTECTED] writes: > FastPath call returned ERROR: lo_write: invalid large obj descriptor (0) Usually this indicates that you didn't have the lo_open ... lo_write ... lo_close sequence wrapped in a transaction block (BEGIN/COMMIT SQL

Re: [JDBC] Fastpath error on solaris 2.8 pgsql 7.1.3

2001-08-27 Thread Tom Lane
[EMAIL PROTECTED] writes: > FastPath call returned ERROR: lo_write: invalid large obj descriptor (0) Usually this indicates that you didn't have the lo_open ... lo_write ... lo_close sequence wrapped in a transaction block (BEGIN/COMMIT SQL commands). Since it's erratic for you, I'd bet that so

RE: [JDBC] Fastpath error on solaris 2.8 pgsql 7.1.3

2001-08-27 Thread chris markiewicz
I have exactly the same problem...it happens randomly, it seems. maybe 5% of the time. also happens on selects (lo_read though). the only advice that i've seen on the topic is to make sure that autocommit is set to false, which i've done, but i still see the problem. unfortunately, my next att