Re: [Hibernate] Postgresql array index exception creating a new record

2003-09-12 Thread Gerry Duprey
Howdy, Thanks - that was it for sure - the 7.3.2 PGSQL JDBC driver didn't handle it. I upgraded to 7.3.4 and things worked fine. Thanks again! Gerry Gavin King wrote: I think it is a bug in the Postgres implementation of JDBC batch updates. Gerry Duprey wrote: Howdy, I'm new to hibernate a

Re: [Hibernate] Postgresql array index exception creating a new record

2003-09-12 Thread Juozas Baliuka
Dissable batch updates, there is no batch updates in server protocol, driver just emulates this feature and it will not increase performance on postgresql at this time. > I think it is a bug in the Postgres implementation of JDBC batch updates. > > Gerry Duprey wrote: > > > Howdy, > > > > I'm n

Re: [Hibernate] Postgresql array index exception creating a new record

2003-09-10 Thread Gavin King
I think it is a bug in the Postgres implementation of JDBC batch updates. Gerry Duprey wrote: Howdy, I'm new to hibernate and have run into a problem almost immediatly in my test program while trying to save a new object/record. I've tried this with Hibernate 2.0.3 and 2.1b3. This is on Postr

[Hibernate] Postgresql array index exception creating a new record

2003-09-10 Thread Gerry Duprey
Howdy, I'm new to hibernate and have run into a problem almost immediatly in my test program while trying to save a new object/record. I've tried this with Hibernate 2.0.3 and 2.1b3. This is on PostreSQL7. After creating a hibernatable object instance, I attempt to save it and close the transact