[JDBC] JBuilder4

2001-03-01 Thread Catalin CIOCOIU
I have installed the driver JDBC for postgres in JBuilder. I have a problem when I use JDBC Explorer. I can't see the folder TABLES when I open a Postgres Database. I see other folders (procedures etc). The querys works fine. Can somebody help me ?

[JDBC] Blobs and length +- 1

2001-03-01 Thread Philip Crotwell
Hi I am using Blobs with jdbc and postgres7.0.3 and noticed that my blobs were coming out of the database 1 byte shorter than they went in! The problem was that I was using byte[] b = blob.getBytes(1, (int)blob.length()); instead of byte[] b = blob.getBytes(0, (int)blob.length()); But the jav

Re: [JDBC] Concurrency supported?

2001-03-01 Thread Peter Mount
At 02:20 25/02/01 +0100, Ingo Luetkebohle wrote: >Hiya, > >how good is concurrency supported in the JDBC driver? For example, if >I have a small process with about 50 threads, some of them requesting >large objects, will one JDBC connection suffice? If one thread is >executing a large select which

[JDBC] Re: [DOCS] Java class documentation

2001-03-01 Thread Peter Mount
At 00:28 25/02/01 +0100, Peter Eisentraut wrote: >Peter Mount writes: > > > Actually I was waiting until 7.1 was out before rewriting the jdbc docs > > >from scratch (so much has changed since those were written). > >I can see that. However, 7.1 users should still get the benefit of >reasonably u

Re: [JDBC] PATCH to org/postgresql/jdbc2/DatabaseMetaData.java

2001-03-01 Thread Peter Mount
I'll take a look at this patch shortly. Sorry for the delay, work has been hectic this week so I'm about 4 days behind with emails. Peter At 17:22 25/02/01 -0500, Ola Sundell wrote: >--- >postgresql-7.1beta4/src/interfaces/jdbc/org/postgresql/jdbc2/DatabaseMetaData.java >Mon Jan 29 03:53:56 20

Re: [JDBC] Re: Concurrency supported?

2001-03-01 Thread Peter Mount
At 19:44 26/02/01 -0500, Joseph Shraibman wrote: >Peter Eisentraut wrote: > > > > Ingo Luetkebohle writes: > > > > > how good is concurrency supported in the JDBC driver? For example, if > > > I have a small process with about 50 threads, some of them requesting > > > large objects, will one JDBC

Re: [JDBC] PostgresqlDataSource

2001-03-01 Thread Peter Mount
At 13:50 27/02/01 -0800, Peter T. Brown wrote: >I am trying to use Castor (castor.exolab.org). It requires that I use JDBC >(and specifically the postgresqldatasource class). I have downloaded the >postgresql-7.1beta5 src. Whenever I try to build the postgresql.jar using >ant I get: snip /home/p

Re: [JDBC] JBuilder4

2001-03-01 Thread Peter Mount
At 10:31 01/03/01 +0100, Catalin CIOCOIU wrote: > I have installed the driver JDBC for postgres in JBuilder. > I have a problem when I use JDBC Explorer. I can't see the folder >TABLES when I open a Postgres Database. I see other folders (procedures >etc). The querys works fine. >C

Re: [JDBC] Blobs and length +- 1

2001-03-01 Thread Peter Mount
At 09:31 01/03/01 -0500, Philip Crotwell wrote: >Hi > >I am using Blobs with jdbc and postgres7.0.3 and noticed that my blobs >were coming out of the database 1 byte shorter than they went in! The >problem was that I was using >byte[] b = blob.getBytes(1, (int)blob.length()); >instead of >byte[]