Re: [HACKERS] Postgresql JDBC-Driver

2004-06-11 Thread Dave Cramer
This is not a viable solution, as oid's are not guaranteed to be unique, nor are they primary keys; finally tables can be created without oid's, in fact AFAIK, this will be the default in 7.5. Dave On Fri, 2004-03-05 at 08:25, Rudolpho Gian-Franco Gugliotta wrote: Hi, i'm using the jdbc

[HACKERS] Postgresql JDBC-Driver

2004-06-10 Thread Rudolpho Gian-Franco Gugliotta
Hi, i'm using the jdbc postgresql driver. I need to fetch the oid of a just insertet row (getGeneratedKeys() feature). That' why i ask you to provide me the source code to implement this feature.It would be glad if you tell me how and where to get these sources. Thank you very much, Rudolpho

Re: [HACKERS] Postgresql JDBC-Driver

2004-06-10 Thread Kris Jurka
On Fri, 5 Mar 2004, Rudolpho Gian-Franco Gugliotta wrote: Hi, i'm using the jdbc postgresql driver. I need to fetch the oid of a just insertet row (getGeneratedKeys() feature). That' why i ask you to provide me the source code to implement this feature.It would be glad if you tell me

[HACKERS] PostgreSQL JDBC driver Connection.setTransactionIsolation(Connection.TRANSACTION_SERIALIZABLE)failures

2003-08-14 Thread Dave Tenny
I'm using 7.3.3 of the server, and pg73b1jdbc2.jar for the JDBC driver. Various permutations of calls to the setTransactionIsolation all fail to yield a driver state that will tell me that it is set up for serializable transactions. Help!? I googled, I grepped. I find mention of problems with

[HACKERS] PostgreSQL JDBC driver Connection.setTransactionIsolation(Connection.TRANSACTION_SERIALIZABLE)failures

2003-08-05 Thread Dave Tenny
I'm using 7.3.3 of the server, and pg73b1jdbc2.jar for the JDBC driver. Various permutations of calls to the setTransactionIsolation all fail to yield a driver state that will tell me that it is set up for serializable transactions. Help!? I googled, I grepped. I find mention of problems

Re: [HACKERS] PostgreSQL-JDBC driver

2001-03-21 Thread Peter T Mount
Quoting sourabh dixit [EMAIL PROTECTED]: - Hi, I am trying to access PostGreSQL database running at the default port 5432 using JDBC. But the application is giving error "Cannot find suitable driver". I have included JDBC driver JAR file in my CLASSPATH and

Re: [HACKERS] PostgreSQL-JDBC driver

2001-03-21 Thread sourabh dixit
} catch(SQLException ex) { System.err.println("SQLException:"+ex.getMessage()); } } - Original Message - From: Peter T Mount [EMAIL PROTECTED] Date: Wednesday, March 21, 2001 4:56 pm Subject: Re: [HACKERS] PostgreSQL-JDBC driver Quot

[HACKERS] PostgreSQL-JDBC driver

2001-03-20 Thread sourabh dixit
- Hi, I am trying to access PostGreSQL database running at the default port 5432 using JDBC. But the application is giving error "Cannot find suitable driver". I have included JDBC driver JAR file in my CLASSPATH and Class.forName("org.postgresql.Driver") is loading driver successfully.